aa4fc4eb38a1eeec237915f6e6998dfea8112d7d
[groupbasedpolicy.git] / neutron-ovsdb / src / main / resources / org / opendaylight / blueprint / neutron-ovsdb.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     <odl:rpc-service id="epService" interface="org.opendaylight.yang.gen.v1.urn.opendaylight.groupbasedpolicy.endpoint.rev140421.EndpointService"/>
8
9     <odl:clustered-app-config id="moduleConfig"
10         binding-class="org.opendaylight.yang.gen.v1.urn.opendaylight.groupbasedpolicy.neutron.ovsdb.params.rev160812.IntegrationBridgeSetting">
11         <odl:default-config><![CDATA[
12             <integration-bridge-setting xmlns="urn:opendaylight:groupbasedpolicy:neutron:ovsdb:params">
13                 <name>br-int</name>
14                 <openflow-port>6653</openflow-port>
15                 <openflow-protocol>tcp</openflow-protocol>
16             </integration-bridge-setting>
17             ]]>
18         </odl:default-config>
19     </odl:clustered-app-config>
20
21     <bean id="neutronOvsdb" class="org.opendaylight.controller.config.yang.config.neutron_ovsdb.impl.NeutronOvsdbInstance"
22         destroy-method="close">
23         <argument ref="dataBroker"/>
24         <argument ref="epService"/>
25         <argument ref="moduleConfig"/>
26     </bean>
27 </blueprint>