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">
 
   6     <reference id="svcLogicService"
 
   7                interface="org.onap.ccsdk.sli.core.sli.provider.SvcLogicService" />
 
   9     <bean id="client" class="org.onap.ccsdk.sli.northbound.DataChangeClient">
 
  10         <argument ref="svcLogicService" />
 
  13     <reference id="dataBroker"
 
  14                interface="org.opendaylight.mdsal.binding.api.DataBroker" />
 
  16     <reference id="notificationService"
 
  17                interface="org.opendaylight.mdsal.binding.api.NotificationPublishService" />
 
  19     <reference id="rpcRegistry"
 
  20                interface="org.opendaylight.mdsal.binding.api.RpcProviderService" />
 
  22     <bean id="provider" class="org.onap.ccsdk.sli.northbound.DataChangeProvider">
 
  23         <argument ref="dataBroker" />
 
  24         <argument ref="notificationService" />
 
  25         <argument ref="rpcRegistry" />
 
  26         <argument ref="client" />