Add blueprint wiring for loop remover
[l2switch.git] / loopremover / implementation / src / main / resources / org / opendaylight / blueprint / loop-remover.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
3   xmlns:odl="http://opendaylight.org/xmlns/blueprint/v1.0.0"
4   odl:use-default-for-reference-types="true">
5
6   <reference id="dataBroker"
7     interface="org.opendaylight.controller.md.sal.binding.api.DataBroker"
8     odl:type="default" />
9
10   <odl:clustered-app-config id="loopRemoverConfig"
11     binding-class="org.opendaylight.yang.gen.v1.urn.opendaylight.packet.loop.remover.config.rev140528.LoopRemoverConfig">
12   </odl:clustered-app-config>
13
14   <odl:rpc-service id="salFlowService"
15     interface="org.opendaylight.yang.gen.v1.urn.opendaylight.flow.service.rev130819.SalFlowService" />
16
17   <bean id="loopRemover"
18     class="org.opendaylight.l2switch.loopremover.LoopRemoverProvider"
19     init-method="init" destroy-method="close">
20     <argument ref="dataBroker" />
21     <argument ref="salFlowService" />
22     <argument ref="loopRemoverConfig" />
23   </bean>
24
25 </blueprint>