Refactor NodeListener
[openflowplugin.git] / applications / southbound-cli / src / main / resources / OSGI-INF / blueprint / southbound-cli.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
3            xmlns:cm="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.1.0"
4            xmlns:odl="http://opendaylight.org/xmlns/blueprint/v1.0.0">
5     <reference id="dataBroker"
6                interface="org.opendaylight.mdsal.binding.api.DataBroker"/>
7     <reference id="flowCacheManager"
8                interface="org.opendaylight.openflowplugin.api.openflow.FlowGroupCacheManager"/>
9     <reference id="frm"
10                interface="org.opendaylight.openflowplugin.applications.frm.ForwardingRulesManager"/>
11     <reference id="dpnTracker"
12                interface="org.opendaylight.openflowplugin.applications.southboundcli.DpnTracker"/>
13
14     <bean id="reconciliationService"
15           class="org.opendaylight.openflowplugin.applications.southboundcli.ReconciliationServiceImpl"
16           destroy-method="close">
17         <argument ref="dataBroker"/>
18         <argument ref="frm"/>
19         <argument ref="dpnTracker"/>
20         <argument ref="flowCacheManager"/>
21     </bean>
22
23     <odl:rpc-implementation ref="reconciliationService"/>
24 </blueprint>