Bug 7800 - Implement agent RPCs for Yang notification testing
[controller.git] / opendaylight / md-sal / samples / clustering-test-app / provider / src / main / resources / org / opendaylight / blueprint / cluster-test-app.xml
index 687b1a39f533a2573ffb423628e46da5d0bfdbbe..cb7a29a1e314258eef9db888f5d198c655f36271 100644 (file)
   <reference id="domRpcProviderService" interface="org.opendaylight.controller.md.sal.dom.api.DOMRpcProviderService"/>
   <reference id="clusterSingletonService" interface="org.opendaylight.mdsal.singleton.common.api.ClusterSingletonServiceProvider"/>
   <reference id="domDataBroker" interface="org.opendaylight.controller.md.sal.dom.api.DOMDataBroker"/>
+  <reference id="schemaService" interface="org.opendaylight.controller.sal.core.api.model.SchemaService"/>
+  <reference id="normalizedNodeSerializer" interface="org.opendaylight.mdsal.binding.dom.codec.api.BindingNormalizedNodeSerializer"/>
+  <reference id="notificationPublishService" interface="org.opendaylight.controller.md.sal.binding.api.NotificationPublishService" />
+  <reference id="notificationListenerService" interface="org.opendaylight.controller.md.sal.binding.api.NotificationService" />
 
   <bean id="purchaseCarProvider" class="org.opendaylight.controller.clustering.it.provider.PurchaseCarProvider" >
     <property name="notificationProvider" ref="notificationService"/>
     <argument ref="bindingRpcRegistry"/>
     <argument ref="domRpcProviderService"/>
     <argument ref="clusterSingletonService"/>
+    <argument ref="schemaService"/>
+    <argument ref="normalizedNodeSerializer"/>
+    <argument ref="notificationPublishService"/>
+    <argument ref="notificationListenerService"/>
   </bean>
 
 </blueprint>