ORAN A1 Adapter Karaf feature development
[ccsdk/features.git] / sdnr / northbound / a1Adapter / provider / src / main / resources / org / opendaylight / blueprint / impl-blueprint.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <!-- Copyright © ${copyrightYear} ${copyright} and others. All rights reserved. This program and the accompanying materials
4   are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available
5   at http://www.eclipse.org/legal/epl-v10.html -->
6
7 <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
8   xmlns:odl="http://opendaylight.org/xmlns/blueprint/v1.0.0" odl:use-default-for-reference-types="true">
9
10   <reference id="svcLogicService"
11              interface="org.onap.ccsdk.sli.core.sli.provider.SvcLogicService" />
12
13    <bean id="client" class="org.onap.ccsdk.features.sdnr.northbound.a1Adapter.A1AdapterClient">
14        <argument ref="svcLogicService" />
15    </bean>
16
17   <reference id="dataBroker" interface="org.opendaylight.controller.md.sal.binding.api.DataBroker"
18     odl:type="default" />
19
20   <reference id="notificationService"
21              interface="org.opendaylight.controller.md.sal.binding.api.NotificationPublishService"
22              odl:type="default" />
23
24   <reference id="rpcRegistry" interface="org.opendaylight.controller.sal.binding.api.RpcProviderRegistry"
25     odl:type="default" />
26
27   <bean id="provider" class="org.onap.ccsdk.features.sdnr.northbound.a1Adapter.A1AdapterProvider">
28     <argument ref="dataBroker" />
29     <argument ref="rpcRegistry" />
30     <argument ref="notificationService" />
31     <argument ref="client" />
32   </bean>
33
34 </blueprint>