X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-binding-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fbinding%2Fapi%2FNotificationService.java;h=38bf7a196c9e38628144734f7a4c8433de84fe09;hb=526185d061ed50c75890b31a376e9495144b660a;hp=3723c70e8c371115e44b1bf5f0bbeaa9e7da225a;hpb=4b1c94354c0396645effe64388bbefb653e29344;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..38bf7a196c 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 @@ -12,6 +12,7 @@ import org.opendaylight.yangtools.yang.binding.Notification; public interface NotificationService extends BindingAwareService { void addNotificationListener(Class notificationType, NotificationListener listener); - + void addNotificationListener(org.opendaylight.yangtools.yang.binding.NotificationListener listener); + void removeNotificationListener(org.opendaylight.yangtools.yang.binding.NotificationListener listener); void removeNotificationListener(Class notificationType, NotificationListener listener); }