lower code smells
[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
33 import com.att.eelf.configuration.EELFLogger;
34 import com.att.eelf.configuration.EELFManager;
35
36 public class InterfacesServiceProvider{
37
38     private static final EELFLogger log = EELFManager.getInstance().getLogger(InterfacesServiceProvider.class);
39
40     private final DataBroker dataBroker;
41     private final RpcProviderRegistry rpcProviderRegistry;
42     private RpcRegistration <InterfacesServiceService> serviceRegistration;
43
44     public InterfacesServiceProvider(final DataBroker dataBroker, RpcProviderRegistry rpcProviderRegistry) {
45         this.dataBroker = dataBroker;
46         this.rpcProviderRegistry = rpcProviderRegistry;
47     }
48     /**
49      * Method called when the blueprint container is created.
50      */
51     public void init() {
52         // initialize data broker
53         this.serviceRegistration = this.rpcProviderRegistry.addRpcImplementation(InterfacesServiceService.class,
54                 new InterfacesServiceProviderImpl());
55         log.info("DataCollectorProvider Session Initiated");
56     }
57     /**
58      * Method called when the blueprint container is destroyed.
59      */
60     public void close() {
61         if(this.serviceRegistration != null){
62             this.serviceRegistration.close();
63         }
64         log.info("DataCollectorProvider Closed");
65     }
66 }