Do not use odl:type=default
[l2switch.git] / l2switch-main / src / main / resources / org / opendaylight / blueprint / l2switch-impl.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
5   <reference id="dataBroker"
6     interface="org.opendaylight.mdsal.binding.api.DataBroker" />
7   <reference id="notificationPublishService"
8     interface="org.opendaylight.mdsal.binding.api.NotificationService" />
9
10   <odl:clustered-app-config id="l2switchConfig"
11     binding-class="org.opendaylight.yang.gen.v1.urn.opendaylight.l2switch.l2switch.config.rev140528.L2switchConfig">
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="mainProvider" class="org.opendaylight.l2switch.L2SwitchMainProvider"
18     init-method="init" destroy-method="close">
19     <argument ref="dataBroker" />
20     <argument ref="notificationPublishService" />
21     <argument ref="salFlowService" />
22     <argument ref="l2switchConfig" />
23   </bean>
24
25 </blueprint>