Test coverage in appc-interfaces-services package
[appc.git] / appc-inbound / appc-interfaces-service / bundle / src / main / java / org / onap / appc / interfaces / service / InterfacesServiceProvider.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * ================================================================================
9  * Modifications Copyright (C) 2019 Ericsson
10  * =============================================================================
11  * Licensed under the Apache License, Version 2.0 (the "License");
12  * you may not use this file except in compliance with the License.
13  * You may obtain a copy of the License at
14  * 
15  *      http://www.apache.org/licenses/LICENSE-2.0
16  * 
17  * Unless required by applicable law or agreed to in writing, software
18  * distributed under the License is distributed on an "AS IS" BASIS,
19  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20  * See the License for the specific language governing permissions and
21  * limitations under the License.
22  * 
23  * ============LICENSE_END=========================================================
24  */
25
26 package org.onap.appc.interfaces.service;
27
28 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
29 import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.RpcRegistration;
30 import org.opendaylight.controller.sal.binding.api.RpcProviderRegistry;
31 import org.opendaylight.yang.gen.v1.org.onap.appc.interfaces.service.rev170818.InterfacesServiceService;
32 import org.onap.appc.interfaces.service.InterfacesServiceProviderImpl;
33
34 import com.att.eelf.configuration.EELFLogger;
35 import com.att.eelf.configuration.EELFManager;
36
37 public class InterfacesServiceProvider{
38
39     private static final EELFLogger log = EELFManager.getInstance().getLogger(InterfacesServiceProvider.class);
40
41     private final DataBroker dataBroker;
42     private final RpcProviderRegistry rpcProviderRegistry;
43     private RpcRegistration <InterfacesServiceService> serviceRegistration;
44
45     public InterfacesServiceProvider(final DataBroker dataBroker, RpcProviderRegistry rpcProviderRegistry) {
46         this.dataBroker = dataBroker;
47         this.rpcProviderRegistry = rpcProviderRegistry;
48     }
49     /**
50      * Method called when the blueprint container is created.
51      */
52     public void init() {
53         // initialize data broker
54         this.serviceRegistration = this.rpcProviderRegistry.addRpcImplementation(InterfacesServiceService.class,
55                 new InterfacesServiceProviderImpl());
56         log.info("DataCollectorProvider Session Initiated");
57     }
58     /**
59      * Method called when the blueprint container is destroyed.
60      */
61     public void close() {
62         if(this.serviceRegistration != null){
63             this.serviceRegistration.close();
64         }
65         log.info("DataCollectorProvider Closed");
66     }
67 }