Switch to MD-SAL APIs
[openflowplugin.git] / drop-test-karaf / src / main / resources / OSGI-INF / blueprint / drop-test-karaf.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.mdsal.binding.api.DataBroker" odl:type="pingpong"/>
7   <reference id="notificationService" interface="org.opendaylight.mdsal.binding.api.NotificationService"/>
8
9   <odl:rpc-service id="flowService"
10       interface="org.opendaylight.yang.gen.v1.urn.opendaylight.flow.service.rev130819.SalFlowService"/>
11
12   <bean id="dropTestProvider" class="org.opendaylight.openflowplugin.droptestkaraf.DropTestProviderImpl">
13     <argument ref="dataBroker"/>
14     <argument ref="notificationService"/>
15     <argument ref="flowService"/>
16   </bean>
17 </blueprint>