Merge "Mark static methods"
[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            odl:use-default-for-reference-types="true">
6
7     <reference id="dataBroker"
8                interface="org.opendaylight.mdsal.binding.api.DataBroker"/>
9     <reference id="flowCacheManager" interface="org.opendaylight.openflowplugin.api.openflow.FlowGroupCacheManager"/>
10
11     <odl:rpc-service id="frmReconciliationService"
12              interface="org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.openflowplugin.app.frm.reconciliation.service.rev180227.FrmReconciliationService"/>
13     <bean id="alarmAgent"
14           class="org.opendaylight.openflowplugin.applications.southboundcli.alarm.AlarmAgent" init-method="start">
15     </bean>
16     <bean id="nodeListener"
17           class="org.opendaylight.openflowplugin.applications.southboundcli.NodeListener"
18           init-method="start"
19           destroy-method="close">
20         <argument ref="dataBroker"/>
21     </bean>
22     <bean id="reconciliationService"
23           class="org.opendaylight.openflowplugin.applications.southboundcli.ReconciliationServiceImpl"
24           destroy-method="close">
25         <argument ref="dataBroker"/>
26         <argument ref="frmReconciliationService"/>
27         <argument ref="alarmAgent"/>
28         <argument ref="nodeListener"/>
29         <argument ref="flowCacheManager"/>
30     </bean>
31
32     <odl:rpc-implementation ref="reconciliationService"/>
33
34 </blueprint>