Bump MDSAL to 4.0.0
[bgpcep.git] / pcep / tunnel / tunnel-provider / src / main / resources / OSGI-INF / blueprint / pcep-tunnel-provider.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
4
5   This program and the accompanying materials are made available under the
6   terms of the Eclipse Public License v1.0 which accompanies this distribution,
7   and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <blueprint xmlns:odl="http://opendaylight.org/xmlns/blueprint/v1.0.0"
10            xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0">
11     <reference id="dataBroker" interface="org.opendaylight.mdsal.binding.api.DataBroker"
12                odl:type="default"/>
13     <reference id="rpcProviderService" interface="org.opendaylight.mdsal.binding.api.RpcProviderService"/>
14     <reference id="rpcConsumerRegistry" interface="org.opendaylight.mdsal.binding.api.RpcConsumerRegistry"/>
15     <reference id="clusterSingletonServiceProvider"
16                interface="org.opendaylight.mdsal.singleton.common.api.ClusterSingletonServiceProvider"/>
17
18     <bean id="TunnelProviderDeployer" class="org.opendaylight.bgpcep.pcep.tunnel.provider.TunnelProviderDeployer"
19           init-method="init"
20           destroy-method="close">
21         <argument ref="dataBroker"/>
22         <argument ref="rpcProviderService"/>
23         <argument ref="rpcConsumerRegistry"/>
24         <argument ref="blueprintBundleContext"/>
25         <argument ref="clusterSingletonServiceProvider"/>
26     </bean>
27 </blueprint>