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