Refine the RPC implementation registration
[transportpce.git] / nbinotifications / src / main / java / org / opendaylight / transportpce / nbinotifications / impl / rpc / GetSupportedNotificationTypesImpl.java
index a5d337c0c7daf4c221b5f0ebab1a4277d0384138..91dc75ccc148915529e912ef4fec554b12a8b73d 100644 (file)
@@ -10,7 +10,7 @@ package org.opendaylight.transportpce.nbinotifications.impl.rpc;
 import com.google.common.util.concurrent.ListenableFuture;
 import java.util.HashSet;
 import java.util.Set;
-import org.opendaylight.transportpce.nbinotifications.impl.NbiNotificationsImpl;
+import org.opendaylight.transportpce.nbinotifications.impl.NbiNotificationsProvider;
 import org.opendaylight.yang.gen.v1.urn.onf.otcc.yang.tapi.common.rev221121.OBJECTTYPE;
 import org.opendaylight.yang.gen.v1.urn.onf.otcc.yang.tapi.common.rev221121.OBJECTTYPEPROFILE;
 import org.opendaylight.yang.gen.v1.urn.onf.otcc.yang.tapi.common.rev221121.OBJECTTYPESERVICEINTERFACEPOINT;
@@ -40,9 +40,9 @@ import org.opendaylight.yangtools.yang.common.RpcResultBuilder;
 
 public class GetSupportedNotificationTypesImpl implements GetSupportedNotificationTypes {
 
-    private NbiNotificationsImpl nbiNotifications;
+    private NbiNotificationsProvider nbiNotifications;
 
-    public GetSupportedNotificationTypesImpl(NbiNotificationsImpl nbiNotifications) {
+    public GetSupportedNotificationTypesImpl(NbiNotificationsProvider nbiNotifications) {
         this.nbiNotifications = nbiNotifications;
     }