Do not use SalFlowService in test-extension
[openflowplugin.git] / extension / test-extension / src / main / resources / OSGI-INF / blueprint / test-extension.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   <odl:rpc-service id="salFlowService"
6       interface="org.opendaylight.yang.gen.v1.urn.opendaylight.flow.service.rev130819.SalFlowService"/>
7
8   <bean id="test" class="org.opendaylight.openflowplugin.extension.test.Test">
9     <property name="flowService" ref="salFlowService"/>
10   </bean>
11
12   <odl:rpc-implementation ref="test"/>
13
14 </blueprint>