Rename autowire.xml
[openflowplugin.git] / applications / reconciliation-framework / src / main / resources / OSGI-INF / blueprint / reconciliation-framework.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0">
3   <bean id="reconciliationManagerImpl"
4         class="org.opendaylight.openflowplugin.applications.reconciliation.impl.ReconciliationManagerImpl"
5         init-method="start"
6         destroy-method="close">
7     <argument ref="mastershipChangeServiceManager"/>
8   </bean>
9   <service ref="reconciliationManagerImpl"
10            interface="org.opendaylight.openflowplugin.applications.reconciliation.ReconciliationManager"/>
11
12   <reference id="mastershipChangeServiceManager"
13              interface="org.opendaylight.openflowplugin.api.openflow.mastership.MastershipChangeServiceManager"/>
14 </blueprint>