Updated SAL Binding APIs
[controller.git] / opendaylight / md-sal / sal-binding-api / src / main / java / org / opendaylight / controller / sal / binding / api / NotificationService.java
index 3723c70e8c371115e44b1bf5f0bbeaa9e7da225a..38bf7a196c9e38628144734f7a4c8433de84fe09 100644 (file)
@@ -12,6 +12,7 @@ import org.opendaylight.yangtools.yang.binding.Notification;
 public interface NotificationService extends BindingAwareService {
 
     <T extends Notification> void addNotificationListener(Class<T> notificationType, NotificationListener<T> listener);
-
+    void addNotificationListener(org.opendaylight.yangtools.yang.binding.NotificationListener listener);
+    void removeNotificationListener(org.opendaylight.yangtools.yang.binding.NotificationListener listener);
     <T extends Notification> void removeNotificationListener(Class<T> notificationType, NotificationListener<T> listener);
 }