aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/IServerContainer.php
diff options
context:
space:
mode:
authorGeorg Ehrke <developer@georgehrke.com>2018-06-18 14:33:25 +0200
committerGeorg Ehrke <developer@georgehrke.com>2018-06-25 04:58:08 +0200
commit9aca92c441229619cfef5ee4dc68f71d819bc6e9 (patch)
tree0eeef33a5f1c4c4c51e1b7dbc0d88c699ca6fbcf /lib/public/IServerContainer.php
parentc83629674eca793cd184462fce5d85902964878c (diff)
downloadnextcloud-server-9aca92c441229619cfef5ee4dc68f71d819bc6e9.tar.gz
nextcloud-server-9aca92c441229619cfef5ee4dc68f71d819bc6e9.zip
hook up calendar resource managers/backends with server container
Signed-off-by: Georg Ehrke <developer@georgehrke.com>
Diffstat (limited to 'lib/public/IServerContainer.php')
-rw-r--r--lib/public/IServerContainer.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/public/IServerContainer.php b/lib/public/IServerContainer.php
index c38aaf9f2cb..96015d3f8a8 100644
--- a/lib/public/IServerContainer.php
+++ b/lib/public/IServerContainer.php
@@ -68,6 +68,24 @@ interface IServerContainer extends IContainer {
public function getCalendarManager();
/**
+ * The calendar resource backend manager will act as a broker between consumers
+ * for calendar resource information an providers which actual deliver the room information.
+ *
+ * @return \OCP\Calendar\Resource\IBackend
+ * @since 14.0.0
+ */
+ public function getCalendarResourceBackendManager();
+
+ /**
+ * The calendar room backend manager will act as a broker between consumers
+ * for calendar room information an providers which actual deliver the room information.
+ *
+ * @return \OCP\Calendar\Room\IBackend
+ * @since 14.0.0
+ */
+ public function getCalendarRoomBackendManager();
+
+ /**
* The contacts manager will act as a broker between consumers for contacts information and
* providers which actual deliver the contact information.
*