diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2015-08-31 12:27:06 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2015-09-08 09:01:01 +0200 |
commit | 5437aeeaa2ad2445c0ea9668d0afffee46a3ba68 (patch) | |
tree | a733489a38aeb60ed5212a847675ae47809bc9bf /lib/public | |
parent | 4e347170ac31462e447daaccf794000981a68f86 (diff) | |
download | nextcloud-server-5437aeeaa2ad2445c0ea9668d0afffee46a3ba68.tar.gz nextcloud-server-5437aeeaa2ad2445c0ea9668d0afffee46a3ba68.zip |
Nothing is set in stone here yet
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/notification/iaction.php | 4 | ||||
-rw-r--r-- | lib/public/notification/iapp.php | 4 | ||||
-rw-r--r-- | lib/public/notification/imanager.php | 4 | ||||
-rw-r--r-- | lib/public/notification/inotification.php | 4 | ||||
-rw-r--r-- | lib/public/notification/inotifier.php | 4 |
5 files changed, 20 insertions, 0 deletions
diff --git a/lib/public/notification/iaction.php b/lib/public/notification/iaction.php index f0dfb024961..334f6cc44a7 100644 --- a/lib/public/notification/iaction.php +++ b/lib/public/notification/iaction.php @@ -26,6 +26,10 @@ namespace OCP\Notification; * * @package OCP\Notification * @since 8.2.0 + * + * DEVELOPER NOTE: + * The notification api is experimental only in 8.2.0! Do not start using it, + * if you can not prepare an update for the next version afterwards. */ interface IAction { /** diff --git a/lib/public/notification/iapp.php b/lib/public/notification/iapp.php index b154efab759..b7bf41ce7f5 100644 --- a/lib/public/notification/iapp.php +++ b/lib/public/notification/iapp.php @@ -26,6 +26,10 @@ namespace OCP\Notification; * * @package OCP\Notification * @since 8.2.0 + * + * DEVELOPER NOTE: + * The notification api is experimental only in 8.2.0! Do not start using it, + * if you can not prepare an update for the next version afterwards. */ interface IApp { /** diff --git a/lib/public/notification/imanager.php b/lib/public/notification/imanager.php index e68f19e71fd..ca1cc968b12 100644 --- a/lib/public/notification/imanager.php +++ b/lib/public/notification/imanager.php @@ -26,6 +26,10 @@ namespace OCP\Notification; * * @package OCP\Notification * @since 8.2.0 + * + * DEVELOPER NOTE: + * The notification api is experimental only in 8.2.0! Do not start using it, + * if you can not prepare an update for the next version afterwards. */ interface IManager extends IApp, INotifier { /** diff --git a/lib/public/notification/inotification.php b/lib/public/notification/inotification.php index 48204f733c1..51d4a804647 100644 --- a/lib/public/notification/inotification.php +++ b/lib/public/notification/inotification.php @@ -26,6 +26,10 @@ namespace OCP\Notification; * * @package OCP\Notification * @since 8.2.0 + * + * DEVELOPER NOTE: + * The notification api is experimental only in 8.2.0! Do not start using it, + * if you can not prepare an update for the next version afterwards. */ interface INotification { /** diff --git a/lib/public/notification/inotifier.php b/lib/public/notification/inotifier.php index 32628768ebc..be6b3f25533 100644 --- a/lib/public/notification/inotifier.php +++ b/lib/public/notification/inotifier.php @@ -26,6 +26,10 @@ namespace OCP\Notification; * * @package OCP\Notification * @since 8.2.0 + * + * DEVELOPER NOTE: + * The notification api is experimental only in 8.2.0! Do not start using it, + * if you can not prepare an update for the next version afterwards. */ interface INotifier { /** |