ORAN A1 Adapter YANG Model Update
[ccsdk/features.git] / sdnr / wt / netconfnode-state-service / provider / src / main / resources / org / opendaylight / blueprint / impl-blueprint.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 ============LICENSE_START=======================================================
4 ONAP : ccsdk feature sdnr wt netconfnode-service-provider
5  ================================================================================
6 Copyright (C) 2019 highstreet technologies GmbH Intellectual Property.
7 All rights reserved.
8 ================================================================================
9 Licensed under the Apache License, Version 2.0 (the "License");
10 you may not use this file except in compliance with the License.
11 You may obtain a copy of the License at
12
13      http://www.apache.org/licenses/LICENSE-2.0
14
15 Unless required by applicable law or agreed to in writing, software
16 distributed under the License is distributed on an "AS IS" BASIS,
17 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 See the License for the specific language governing permissions and
19 limitations under the License.
20 ============LICENSE_END=========================================================
21  -->
22
23 <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
24   xmlns:odl="http://opendaylight.org/xmlns/blueprint/v1.0.0" odl:use-default-for-reference-types="true">
25
26   <reference id="dataBroker" interface="org.opendaylight.mdsal.binding.api.DataBroker"
27     odl:type="default" />
28
29   <reference id="notificationPublishService"
30              interface="org.opendaylight.mdsal.binding.api.NotificationPublishService"
31              odl:type="default" />
32
33   <reference id="mountPointService"
34              interface="org.opendaylight.mdsal.binding.api.MountPointService"
35              odl:type="default" />
36
37   <reference id="rpcProviderRegistry"
38                          interface="org.opendaylight.mdsal.binding.api.RpcProviderService"
39                          odl:type="default" />
40
41   <reference id="clusterSingletonService"
42                  interface="org.opendaylight.mdsal.singleton.common.api.ClusterSingletonServiceProvider"/>
43
44  <bean id="netconfNodeStateService" class="org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.impl.NetconfNodeStateServiceImpl" init-method="init" destroy-method="destroy" scope="singleton">
45     <property name="dataBroker" ref="dataBroker"/>
46     <property name="rpcProviderRegistry" ref="rpcProviderRegistry" />
47     <property name="notificationPublishService" ref="notificationPublishService" />
48     <property name="mountPointService" ref="mountPointService" />
49     <property name="clusterSingletonService" ref="clusterSingletonService" />
50   </bean>
51
52   <service id="registerNetconfNodeStateService"
53                    interface="org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.NetconfNodeStateService"
54                    ref="netconfNodeStateService" />
55
56 </blueprint>