use annotations instead of XML for Blueprint
[ovsdb.git] / southbound / southbound-impl / src / main / resources / OSGI-INF / blueprint / southbound.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   xmlns:cm="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.1.0"
5   odl:use-default-for-reference-types="true">
6
7     <cm:property-placeholder persistent-id="org.opendaylight.ovsdb.southbound" update-strategy="none">
8     <cm:default-properties>
9       <cm:property name="skip-monitoring-manager-status" value="false"/>
10     </cm:default-properties>
11   </cm:property-placeholder>
12
13   <bean id="southboundProviderConfigurator"
14     class="org.opendaylight.ovsdb.southbound.SouthboundProviderConfigurator">
15    <cm:managed-properties persistent-id="org.opendaylight.ovsdb.southbound"
16                            update-strategy="component-managed"
17                            update-method="updateConfigParameter"/>
18     <argument ref="southboundProvider" />
19     <property name="skipMonitoringManagerStatus" value="${skip-monitoring-manager-status}"/>
20   </bean>
21
22 </blueprint>