X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=tests%2Fstubpce%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Ftransportpce%2Fstubpce%2Fimpl%2FStubpceProvider.java;h=99163c31465a38f3ada1dd63216d13cc8fbd7b27;hb=f635c4d0e4252050154b89d53bd7e658eaf75be8;hp=9ef48f373e07f5a400802d18da6f7c30d6729242;hpb=25f39aab062c7d403a1ff1a698a389e6b64eb8f0;p=transportpce.git diff --git a/tests/stubpce/src/main/java/org/opendaylight/transportpce/stubpce/impl/StubpceProvider.java b/tests/stubpce/src/main/java/org/opendaylight/transportpce/stubpce/impl/StubpceProvider.java index 9ef48f373..99163c314 100644 --- a/tests/stubpce/src/main/java/org/opendaylight/transportpce/stubpce/impl/StubpceProvider.java +++ b/tests/stubpce/src/main/java/org/opendaylight/transportpce/stubpce/impl/StubpceProvider.java @@ -14,8 +14,8 @@ import org.opendaylight.controller.md.sal.binding.api.NotificationPublishService import org.opendaylight.controller.md.sal.binding.api.NotificationService; import org.opendaylight.controller.sal.binding.api.BindingAwareBroker; import org.opendaylight.controller.sal.binding.api.RpcProviderRegistry; -import org.opendaylight.yang.gen.v1.http.org.transportpce.b.c._interface.servicepath.rev170426.TransportpceServicepathListener; -import org.opendaylight.yang.gen.v1.http.org.transportpce.b.c._interface.servicepath.rev170426.TransportpceServicepathService; +import org.opendaylight.yang.gen.v1.http.org.opendaylight.transportpce.stubpce.rev170426.StubpceListener; +import org.opendaylight.yang.gen.v1.http.org.opendaylight.transportpce.stubpce.rev170426.StubpceService; import org.opendaylight.yangtools.concepts.ListenerRegistration; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -33,8 +33,8 @@ public class StubpceProvider { private final DataBroker dataBroker; - private BindingAwareBroker.RpcRegistration rpcRegistration; - private ListenerRegistration stubPcelistenerRegistration; + private BindingAwareBroker.RpcRegistration rpcRegistration; + private ListenerRegistration stubPcelistenerRegistration; public StubpceProvider(RpcProviderRegistry rpcProviderRegistry,final DataBroker dataBroker, NotificationService notificationService, NotificationPublishService notificationPublishService) { @@ -49,7 +49,7 @@ public class StubpceProvider { public void init() { LOG.info("StubpceProvider Session Initiated"); final StubpceImpl consumer = new StubpceImpl(notificationPublishService,dataBroker); - rpcRegistration = rpcRegistry.addRpcImplementation(TransportpceServicepathService.class, consumer); + rpcRegistration = rpcRegistry.addRpcImplementation(StubpceService.class, consumer); } /**