Update to MD-SAL APIs
[controller.git] / opendaylight / md-sal / sal-binding-api / src / main / java / org / opendaylight / controller / sal / binding / api / NotificationService.java
index 38bf7a196c9e38628144734f7a4c8433de84fe09..922acb9821f45d6598b1b39606cd04a82681ec3d 100644 (file)
@@ -7,12 +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
     <T extends Notification> void addNotificationListener(Class<T> notificationType, NotificationListener<T> listener);
+
+    @Deprecated
     void addNotificationListener(org.opendaylight.yangtools.yang.binding.NotificationListener listener);
+
+    @Deprecated
     void removeNotificationListener(org.opendaylight.yangtools.yang.binding.NotificationListener listener);
+
+    @Deprecated
     <T extends Notification> void removeNotificationListener(Class<T> notificationType, NotificationListener<T> listener);
+
+    <T extends Notification> Registration<NotificationListener<T>> registerNotificationListener(
+            Class<T> notificationType, NotificationListener<T> listener);
+
+
+    Registration<org.opendaylight.yangtools.yang.binding.NotificationListener> registerNotificationListener(
+            org.opendaylight.yangtools.yang.binding.NotificationListener listener);
 }