Updated SAL Binding APIs
[controller.git] / opendaylight / md-sal / sal-binding-broker / src / main / java / org / opendaylight / controller / sal / binding / impl / NotificationBrokerImpl.xtend
index 22db73526e2e2e386636cc8b45320b3c246f24ad..8b0400f51254af1a2948f7c72f94bca17e0b292f 100644 (file)
@@ -49,4 +49,17 @@ class NotificationBrokerImpl implements NotificationProviderService {
     def notifyAll(Collection<NotificationListener<?>> listeners, Notification notification) {
         listeners.forEach[(it as NotificationListener).onNotification(notification)]
     }
+    
+    override addNotificationListener(org.opendaylight.yangtools.yang.binding.NotificationListener listener) {
+        throw new UnsupportedOperationException("TODO: auto-generated method stub")
+        
+    }
+    
+    override removeNotificationListener(org.opendaylight.yangtools.yang.binding.NotificationListener listener) {
+        throw new UnsupportedOperationException("TODO: auto-generated method stub")
+    }
+    
+    override notify(Notification notification, ExecutorService service) {
+        throw new UnsupportedOperationException("TODO: auto-generated method stub")
+    }
 }