df9371f66904fc44ac8a345d6d6cfd2b210a1336
[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 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.appc.interfaces.service;
26
27 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
28 import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.RpcRegistration;
29 import org.opendaylight.controller.sal.binding.api.RpcProviderRegistry;
30 import org.opendaylight.yang.gen.v1.org.onap.appc.interfaces.service.rev170818.InterfacesServiceService;
31 import org.onap.appc.interfaces.service.InterfacesServiceProviderImpl;
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 }