Rename artifacts in A1 controller
[nonrtric.git] / sdnc-a1-controller / northbound / nonrt-ric-api / provider / src / main / resources / OSGI-INF / blueprint / nonrt-ric-api-blueprint.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4    Copyright (C) 2019-2020 Nordix Foundation.
5   ================================================================================
6   Licensed under the Apache License, Version 2.0 (the "License");
7   you may not use this file except in compliance with the License.
8   You may obtain a copy of the License at
9
10        http://www.apache.org/licenses/LICENSE-2.0
11
12   Unless required by applicable law or agreed to in writing, software
13   distributed under the License is distributed on an "AS IS" BASIS,
14   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15   See the License for the specific language governing permissions and
16   limitations under the License.
17
18   SPDX-License-Identifier: Apache-2.0
19   ============LICENSE_END=========================================================
20 -->
21 <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
22            xmlns:odl="http://opendaylight.org/xmlns/blueprint/v1.0.0"
23            odl:use-default-for-reference-types="true">
24
25     <reference id="dataBroker"
26                interface="org.opendaylight.controller.md.sal.binding.api.DataBroker"
27                odl:type="default" />
28
29     <reference id="notificationService"
30                interface="org.opendaylight.controller.md.sal.binding.api.NotificationPublishService"
31                odl:type="default" />
32
33     <reference id="rpcRegistry"
34                interface="org.opendaylight.controller.sal.binding.api.RpcProviderRegistry"
35                odl:type="default" />
36
37     <bean id="provider" class="org.o_ran_sc.nonrtric.sdnc_a1.northbound.provider.NonrtRicApiProvider">
38         <argument ref="dataBroker" />
39         <argument ref="notificationService" />
40         <argument ref="rpcRegistry" />
41     </bean>
42
43     <odl:rpc-implementation ref="provider"/>
44
45 </blueprint>