ServiceDatastore instantiation in ServiceHandler
[transportpce.git] / servicehandler / src / main / java / org / opendaylight / transportpce / servicehandler / service / ServiceHandlerOperationsImpl.java
index 53675b18f48d7bf065122cd53027012c311efd7f..ed8ab32d768fbe2c401f7b971640339bab6f7707 100644 (file)
@@ -34,9 +34,10 @@ public class ServiceHandlerOperationsImpl implements ServiceHandlerOperations {
     public ServiceHandlerOperationsImpl(DataBroker databroker, PathComputationService pathComputationService,
         RendererServiceOperations rendererServiceOperations, NotificationPublishService notificationPublishService,
         PceListenerImpl pceListenerImpl, RendererListenerImpl rendererListenerImpl,
-        NetworkModelListenerImpl networkModelListenerImpl) {
+        NetworkModelListenerImpl networkModelListenerImpl, ServiceDataStoreOperations serviceDataStoreOperations) {
         this.serviceHandler = new ServicehandlerImpl(databroker, pathComputationService, rendererServiceOperations,
-            notificationPublishService, pceListenerImpl, rendererListenerImpl, networkModelListenerImpl);
+            notificationPublishService, pceListenerImpl, rendererListenerImpl, networkModelListenerImpl,
+            serviceDataStoreOperations);
     }
 
     @Override