Remove completely opendaylight/commons/opendaylight
[controller.git] / opendaylight / md-sal / sal-cluster-admin / src / main / resources / org / opendaylight / blueprint / cluster-admin.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   <!-- ClusterAdminRpcService -->
6
7   <reference id="configDatastore" interface="org.opendaylight.controller.cluster.datastore.DistributedDataStoreInterface"
8       odl:type="distributed-config"/>
9
10   <reference id="operationalDatastore" interface="org.opendaylight.controller.cluster.datastore.DistributedDataStoreInterface"
11       odl:type="distributed-operational"/>
12
13   <bean id="clusterAdminService" class="org.opendaylight.controller.cluster.datastore.admin.ClusterAdminRpcService">
14     <argument ref="configDatastore"/>
15     <argument ref="operationalDatastore"/>
16   </bean>
17
18   <odl:rpc-implementation ref="clusterAdminService"/>
19
20 </blueprint>