X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-binding-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fbinding%2Fapi%2FNotificationService.java;h=6e8bda56d89e84e5fe0a7920ebcdfd07c2c5b84e;hp=3723c70e8c371115e44b1bf5f0bbeaa9e7da225a;hb=d9de6c2ddfb30eb2eee782c229f6e03cef352bbd;hpb=6b64494fd8e4654a298312afb4b8e6e827b75d5d 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..6e8bda56d8 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.yangtools.concepts.Registration; import org.opendaylight.yangtools.yang.binding.Notification; public interface NotificationService extends BindingAwareService { + /** + * Register a generic listener for specified notification type only. + * + * @param notificationType + * @param listener + * @return Registration for listener. To unregister listener invoke {@link Registration#close()} method. + */ + Registration> registerNotificationListener( + Class notificationType, NotificationListener listener); - void addNotificationListener(Class notificationType, NotificationListener listener); - - void removeNotificationListener(Class notificationType, NotificationListener listener); + /** + * Register a listener which implements generated notification interfaces derived from + * {@link org.opendaylight.yangtools.yang.binding.NotificationListener}. + * Listener is registered for all notifications present in implemented interfaces. + * + * @param listener + * @return Registration for listener. To unregister listener invoke {@link Registration#close()} method. + */ + Registration registerNotificationListener( + org.opendaylight.yangtools.yang.binding.NotificationListener listener); }