X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=opendaylight%2Fmd-sal%2Fsal-binding-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fbinding%2Fapi%2FNotificationService.java;h=922acb9821f45d6598b1b39606cd04a82681ec3d;hb=a251833f27fd00040904e2df316cd707c8129d1e;hp=3723c70e8c371115e44b1bf5f0bbeaa9e7da225a;hpb=fe024ad74b8656c3ee61b9ddff6009a779aa2189;p=controller.git diff --git a/opendaylight/md-sal/sal-binding-api/src/main/java/org/opendaylight/controller/sal/binding/api/NotificationService.java b/opendaylight/md-sal/sal-binding-api/src/main/java/org/opendaylight/controller/sal/binding/api/NotificationService.java index 3723c70e8c..922acb9821 100644 --- a/opendaylight/md-sal/sal-binding-api/src/main/java/org/opendaylight/controller/sal/binding/api/NotificationService.java +++ b/opendaylight/md-sal/sal-binding-api/src/main/java/org/opendaylight/controller/sal/binding/api/NotificationService.java @@ -7,11 +7,28 @@ */ package org.opendaylight.controller.sal.binding.api; +import org.opendaylight.controller.md.sal.common.api.notify.NotificationSubscriptionService; +import org.opendaylight.yangtools.concepts.Registration; import org.opendaylight.yangtools.yang.binding.Notification; public interface NotificationService extends BindingAwareService { + @Deprecated void addNotificationListener(Class notificationType, NotificationListener listener); + @Deprecated + void addNotificationListener(org.opendaylight.yangtools.yang.binding.NotificationListener listener); + + @Deprecated + void removeNotificationListener(org.opendaylight.yangtools.yang.binding.NotificationListener listener); + + @Deprecated void removeNotificationListener(Class notificationType, NotificationListener listener); + + Registration> registerNotificationListener( + Class notificationType, NotificationListener listener); + + + Registration registerNotificationListener( + org.opendaylight.yangtools.yang.binding.NotificationListener listener); }