9412061e49bc977dde0095f73ca4ea2b89de3548
[openflowplugin.git] / samples / sample-bundles / src / main / resources / OSGI-INF / blueprint / bundle-blueprint.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
8   <odl:rpc-service id="salBundleService" interface="org.opendaylight.yang.gen.v1.urn.opendaylight.openflowplugin.extension.onf.bundle.service.rev170124.SalBundleService"/>
9
10   <bean id="sampleListener" class="org.opendaylight.openflowplugin.samples.sample.bundles.SampleFlowCapableNodeListener"
11           init-method="init" destroy-method="close">
12     <argument ref="dataBroker"/>
13     <argument ref="salBundleService"/>
14   </bean>
15
16 </blueprint>