Update license header in appc-inbound files
[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  * 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  * 
21  * ============LICENSE_END=========================================================
22  */
23
24 package org.onap.appc.interfaces.service;
25
26 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
27 import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.RpcRegistration;
28 import org.opendaylight.controller.sal.binding.api.RpcProviderRegistry;
29 import org.opendaylight.yang.gen.v1.org.onap.appc.interfaces.service.rev170818.InterfacesServiceService;
30 import org.onap.appc.interfaces.service.InterfacesServiceProviderImpl;
31
32 import com.att.eelf.configuration.EELFLogger;
33 import com.att.eelf.configuration.EELFManager;
34
35 public class InterfacesServiceProvider{
36
37     private static final EELFLogger log = EELFManager.getInstance().getLogger(InterfacesServiceProvider.class);
38
39     private final DataBroker dataBroker;
40     private final RpcProviderRegistry rpcProviderRegistry;
41     private RpcRegistration <InterfacesServiceService> serviceRegistration;
42     
43     public InterfacesServiceProvider(final DataBroker dataBroker, RpcProviderRegistry rpcProviderRegistry) {
44         this.dataBroker = dataBroker;
45         this.rpcProviderRegistry = rpcProviderRegistry;
46     }
47     /**
48      * Method called when the blueprint container is created.
49      */
50     public void init() {
51         // initialize data broker
52         this.serviceRegistration = this.rpcProviderRegistry.addRpcImplementation(InterfacesServiceService.class,
53                 new InterfacesServiceProviderImpl());
54         log.info("DataCollectorProvider Session Initiated");
55     }
56     /**
57      * Method called when the blueprint container is destroyed.
58      */
59     public void close() {
60         if(this.serviceRegistration != null){
61             this.serviceRegistration.close();
62         }
63         log.info("DataCollectorProvider Closed");
64     }
65 }