Remove uses of BindingAwareProvider/Consumer
[openflowplugin.git] / samples / learning-switch / src / main / resources / org / opendaylight / blueprint / learning-switch.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" interface="org.opendaylight.controller.md.sal.binding.api.DataBroker"/>
7   <reference id="notificationService" interface="org.opendaylight.controller.sal.binding.api.NotificationService"/>
8
9   <odl:rpc-service id="packetProcessingService" interface="org.opendaylight.yang.gen.v1.urn.opendaylight.packet.service.rev130709.PacketProcessingService"/>
10
11   <bean id="learningSwitch" class="org.opendaylight.openflowplugin.learningswitch.multi.LearningSwitchManagerMultiImpl"
12       init-method="start" destroy-method="stop">
13     <property name="dataBroker" ref="dataBroker"/>
14     <property name="notificationService" ref="notificationService"/>
15     <property name="packetProcessingService" ref="packetProcessingService"/>
16   </bean>
17
18 </blueprint>