Service-notification handling for serviceHandler
[transportpce.git] / servicehandler / src / main / resources / org / opendaylight / blueprint / servicehandler-blueprint.xml
1 <?xml version="1.0" encoding="UTF-8"?>\r
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->\r
3 <!--\r
4 Copyright © 2017 Orange and others. All rights reserved.\r
5 \r
6 This program and the accompanying materials are made available under the\r
7 terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
8 and is available at http://www.eclipse.org/legal/epl-v10.html\r
9 \r
10 Author: Martial Coulibaly <martial.coulibaly@gfi.com> on behalf of Orange\r
11 -->\r
12 <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"\r
13   xmlns:odl="http://opendaylight.org/xmlns/blueprint/v1.0.0"\r
14   odl:use-default-for-reference-types="true">\r
15 \r
16     <reference id="rpcRegistry"\r
17           interface="org.opendaylight.controller.sal.binding.api.RpcProviderRegistry"/>\r
18 \r
19     <reference id="dataBroker"\r
20           interface="org.opendaylight.controller.md.sal.binding.api.DataBroker"\r
21           odl:type="default" />\r
22 \r
23     <reference id="notificationService"\r
24           interface="org.opendaylight.controller.md.sal.binding.api.NotificationService"\r
25           odl:type="default" />\r
26 \r
27     <reference id="notificationPublishService"\r
28           interface="org.opendaylight.controller.md.sal.binding.api.NotificationPublishService"\r
29           odl:type="default" />\r
30 \r
31     <reference id="pathComputationService"\r
32           interface="org.opendaylight.transportpce.pce.service.PathComputationService"/>\r
33 \r
34     <reference id="rendererServiceOperations"\r
35              interface="org.opendaylight.transportpce.renderer.provisiondevice.RendererServiceOperations" />\r
36 \r
37     <reference id="networkModelWavelengthService"\r
38            interface="org.opendaylight.transportpce.renderer.NetworkModelWavelengthService" />\r
39 \r
40     <bean id="provider"\r
41           class="org.opendaylight.transportpce.servicehandler.impl.ServicehandlerProvider"\r
42           init-method="init" destroy-method="close">\r
43         <argument ref="rpcRegistry" />\r
44         <argument ref="dataBroker" />\r
45         <argument ref="notificationService" />\r
46         <argument ref="notificationPublishService" />\r
47         <argument ref="pathComputationService" />\r
48         <argument ref="rendererServiceOperations" />\r
49         <argument ref="networkModelWavelengthService" />\r
50     </bean>\r
51 \r
52 </blueprint>\r