ServiceHandler update for new PCE compatibility
[transportpce.git] / servicehandler / src / main / resources / org / opendaylight / blueprint / servicehandler-blueprint.xml
diff --git a/servicehandler/src/main/resources/org/opendaylight/blueprint/servicehandler-blueprint.xml b/servicehandler/src/main/resources/org/opendaylight/blueprint/servicehandler-blueprint.xml
new file mode 100644 (file)
index 0000000..7e0569a
--- /dev/null
@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="UTF-8"?>\r
+<!-- vi: set et smarttab sw=4 tabstop=4: -->\r
+<!--\r
+Copyright © 2017 Orange and others. All rights reserved.\r
+\r
+This program and the accompanying materials are made available under the\r
+terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
+and is available at http://www.eclipse.org/legal/epl-v10.html\r
+\r
+Author: Martial Coulibaly <martial.coulibaly@gfi.com> on behalf of Orange\r
+-->\r
+<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"\r
+  xmlns:odl="http://opendaylight.org/xmlns/blueprint/v1.0.0"\r
+  odl:use-default-for-reference-types="true">\r
+\r
+    <reference id="rpcRegistry"\r
+          interface="org.opendaylight.controller.sal.binding.api.RpcProviderRegistry"/>\r
+\r
+    <reference id="dataBroker"\r
+          interface="org.opendaylight.controller.md.sal.binding.api.DataBroker"\r
+          odl:type="default" />\r
+\r
+    <reference id="notificationService"\r
+          interface="org.opendaylight.controller.md.sal.binding.api.NotificationService"\r
+          odl:type="default" />\r
+\r
+    <reference id="pathComputationService"\r
+          interface="org.opendaylight.transportpce.pce.service.PathComputationService"/>\r
+\r
+    <reference id="rendererServiceOperations"\r
+             interface="org.opendaylight.transportpce.renderer.provisiondevice.RendererServiceOperations" />\r
+\r
+    <bean id="provider"\r
+          class="org.opendaylight.transportpce.servicehandler.impl.ServicehandlerProvider"\r
+          init-method="init" destroy-method="close">\r
+        <argument ref="rpcRegistry" />\r
+        <argument ref="dataBroker" />\r
+        <argument ref="notificationService" />\r
+        <argument ref="pathComputationService" />\r
+        <argument ref="rendererServiceOperations" />\r
+    </bean>\r
+\r
+</blueprint>\r