diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-11-26 15:49:14 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-11-27 17:54:29 +0100 |
commit | b666367a7902c5d935f7aef1704711b8695690b2 (patch) | |
tree | fc65f2208512f53e8390c55d84bfcf54ab60fdb7 /lib/public/iservercontainer.php | |
parent | 129ec4fb4054f2f145285772b94d7d5e1cd56286 (diff) | |
download | nextcloud-server-b666367a7902c5d935f7aef1704711b8695690b2.tar.gz nextcloud-server-b666367a7902c5d935f7aef1704711b8695690b2.zip |
Added system tags data structure and PHP side managers
Added SystemTagManager and SystemTagObjectMapper
Diffstat (limited to 'lib/public/iservercontainer.php')
-rw-r--r-- | lib/public/iservercontainer.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/public/iservercontainer.php b/lib/public/iservercontainer.php index d85f812b2e7..7cb2672254b 100644 --- a/lib/public/iservercontainer.php +++ b/lib/public/iservercontainer.php @@ -470,4 +470,22 @@ interface IServerContainer { * @since 8.2.0 */ public function getNotificationManager(); + + /** + * Returns the system-tag manager + * + * @return \OCP\SystemTag\ISystemTagManager + * + * @since 9.0.0 + */ + public function getSystemTagManager(); + + /** + * Returns the system-tag object mapper + * + * @return \OCP\SystemTag\ISystemTagObjectMapper + * + * @since 9.0.0 + */ + public function getSystemTagObjectMapper(); } |