X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=restconf%2Frestconf-nb-rfc8040%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Frestconf%2Fnb%2Frfc8040%2Fservices%2Fwrapper%2FServicesWrapper.java;fp=restconf%2Frestconf-nb-rfc8040%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Frestconf%2Fnb%2Frfc8040%2Fservices%2Fwrapper%2FServicesWrapper.java;h=456923d609d252ed0ad1f2895bde4fbb342fda1f;hb=7d5c865cbf9d0f0b979937ca7f5cebfe19f4983e;hp=174297f41bec68056945f495afde5f6ca777ba4c;hpb=04269ff2dfffac39ce6d2ebcad30fb44a3deeaa8;p=netconf.git diff --git a/restconf/restconf-nb-rfc8040/src/main/java/org/opendaylight/restconf/nb/rfc8040/services/wrapper/ServicesWrapper.java b/restconf/restconf-nb-rfc8040/src/main/java/org/opendaylight/restconf/nb/rfc8040/services/wrapper/ServicesWrapper.java index 174297f41b..456923d609 100644 --- a/restconf/restconf-nb-rfc8040/src/main/java/org/opendaylight/restconf/nb/rfc8040/services/wrapper/ServicesWrapper.java +++ b/restconf/restconf-nb-rfc8040/src/main/java/org/opendaylight/restconf/nb/rfc8040/services/wrapper/ServicesWrapper.java @@ -11,6 +11,7 @@ import javax.ws.rs.Path; import javax.ws.rs.core.Response; import javax.ws.rs.core.UriInfo; import org.opendaylight.mdsal.dom.api.DOMActionService; +import org.opendaylight.mdsal.dom.api.DOMNotificationService; import org.opendaylight.mdsal.dom.api.DOMRpcService; import org.opendaylight.mdsal.dom.api.DOMSchemaService; import org.opendaylight.mdsal.dom.api.DOMYangTextSourceProvider; @@ -20,7 +21,6 @@ import org.opendaylight.restconf.common.patch.PatchStatusContext; import org.opendaylight.restconf.common.schema.SchemaExportContext; import org.opendaylight.restconf.nb.rfc8040.handlers.DOMDataBrokerHandler; import org.opendaylight.restconf.nb.rfc8040.handlers.DOMMountPointServiceHandler; -import org.opendaylight.restconf.nb.rfc8040.handlers.NotificationServiceHandler; import org.opendaylight.restconf.nb.rfc8040.handlers.SchemaContextHandler; import org.opendaylight.restconf.nb.rfc8040.handlers.TransactionChainHandler; import org.opendaylight.restconf.nb.rfc8040.rests.services.api.RestconfDataService; @@ -73,7 +73,7 @@ public final class ServicesWrapper implements BaseServicesWrapper, TransactionSe final DOMMountPointServiceHandler domMountPointServiceHandler, final TransactionChainHandler transactionChainHandler, final DOMDataBrokerHandler domDataBrokerHandler, final DOMRpcService rpcService, final DOMActionService actionService, - final NotificationServiceHandler notificationServiceHandler, final DOMSchemaService domSchemaService, + final DOMNotificationService notificationService, final DOMSchemaService domSchemaService, final Configuration configuration) { RestconfOperationsService restconfOpsService = new RestconfOperationsServiceImpl(schemaCtxHandler, domMountPointServiceHandler); @@ -82,7 +82,7 @@ public final class ServicesWrapper implements BaseServicesWrapper, TransactionSe RestconfSchemaService restconfSchemaService = new RestconfSchemaServiceImpl(schemaCtxHandler, domMountPointServiceHandler, yangTextSourceProvider); RestconfStreamsSubscriptionService restconfSubscrService = new RestconfStreamsSubscriptionServiceImpl( - domDataBrokerHandler, notificationServiceHandler, schemaCtxHandler, transactionChainHandler, + domDataBrokerHandler, notificationService, schemaCtxHandler, transactionChainHandler, configuration); RestconfDataService restconfDataService = new RestconfDataServiceImpl(schemaCtxHandler, transactionChainHandler, domMountPointServiceHandler, restconfSubscrService, actionService, configuration);