Remove Handler interface
[netconf.git] / restconf / restconf-nb-rfc8040 / src / main / java / org / opendaylight / restconf / nb / rfc8040 / handlers / NotificationServiceHandler.java
index 378f891404d598bb51cd40ed91fd480fce1f351c..ea5cd7bb08563958a93cb459538eccdb7b4b5912 100644 (file)
@@ -12,9 +12,9 @@ import javax.inject.Singleton;
 import org.apache.aries.blueprint.annotation.service.Reference;
 import org.opendaylight.mdsal.dom.api.DOMNotificationService;
 
+// FIXME: remove this class
 @Singleton
-public class NotificationServiceHandler implements Handler<DOMNotificationService> {
-
+public class NotificationServiceHandler {
     private final DOMNotificationService notificationService;
 
     /**
@@ -28,7 +28,6 @@ public class NotificationServiceHandler implements Handler<DOMNotificationServic
         this.notificationService = notificationService;
     }
 
-    @Override
     public DOMNotificationService get() {
         return this.notificationService;
     }