X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=tests%2Fstubrenderer%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Ftransportpce%2Fstubrenderer%2Fimpl%2FStubrendererProvider.java;h=dff06285e2e10435417069c43d942dd9f0f717b9;hb=7657ad92b7ca389623fbb195e19c94148dfdfe0a;hp=066bf1897f0d16b0142df78f3fa7d4113974a983;hpb=e909d17392274b7af0e8e6d99f80fd021f4ed7a4;p=transportpce.git diff --git a/tests/stubrenderer/src/main/java/org/opendaylight/transportpce/stubrenderer/impl/StubrendererProvider.java b/tests/stubrenderer/src/main/java/org/opendaylight/transportpce/stubrenderer/impl/StubrendererProvider.java index 066bf1897..dff06285e 100644 --- a/tests/stubrenderer/src/main/java/org/opendaylight/transportpce/stubrenderer/impl/StubrendererProvider.java +++ b/tests/stubrenderer/src/main/java/org/opendaylight/transportpce/stubrenderer/impl/StubrendererProvider.java @@ -13,15 +13,15 @@ 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.opendaylight.transportpce.stubrenderer.rev170426.StubrendererListener; -import org.opendaylight.yang.gen.v1.http.org.opendaylight.transportpce.stubrenderer.rev170426.StubrendererService; +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.yangtools.concepts.ListenerRegistration; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Class to register Stubrenderer Service and Notification. - * @author Martial Coulibaly ( martial.coulibaly@gfi.com ) on behalf of Orange + * @author Martial Coulibaly on behalf of Orange * */ public class StubrendererProvider { @@ -30,12 +30,12 @@ public class StubrendererProvider { private final NotificationPublishService notificationPublishService; - private BindingAwareBroker.RpcRegistration rpcRegistration; - private ListenerRegistration stubRendererlistenerRegistration; + private BindingAwareBroker.RpcRegistration rpcRegistration; + private ListenerRegistration stubRendererlistenerRegistration; public StubrendererProvider(RpcProviderRegistry rpcProviderRegistry, - NotificationService notificationService, - NotificationPublishService notificationPublishService) { + NotificationService notificationService, + NotificationPublishService notificationPublishService) { this.rpcRegistry = rpcProviderRegistry; this.notificationPublishService = notificationPublishService; } @@ -46,7 +46,7 @@ public class StubrendererProvider { public void init() { LOG.info("StubrendererProvider Session Initiated"); final StubrendererImpl consumer = new StubrendererImpl(notificationPublishService); - rpcRegistration = rpcRegistry.addRpcImplementation(StubrendererService.class, consumer); + rpcRegistration = rpcRegistry.addRpcImplementation(TransportpceServicepathService.class, consumer); } /**