Initial adds artifact handler and design services
[appc.git] / appc-inbound / appc-design-services / provider / src / main / java / org / openecomp / appc / design / services / DesignServiceProvider.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.openecomp.appc.design.services;
26
27 import java.util.concurrent.Future;
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.openecomp.appc.rev170627.DesignServicesService;
32 import org.opendaylight.yangtools.yang.common.RpcResult;
33 import org.openecomp.appc.design.services.impl.DesignServicesImpl;
34
35 import com.att.eelf.configuration.EELFLogger;
36 import com.att.eelf.configuration.EELFManager;
37
38 public class DesignServiceProvider{
39
40     private static final EELFLogger log = EELFManager.getInstance().getLogger(DesignServiceProvider.class);
41
42     private final DataBroker dataBroker;
43     private final RpcProviderRegistry rpcProviderRegistry;
44     private RpcRegistration <DesignServicesService> serviceRegistration;
45     
46
47     public DesignServiceProvider(final DataBroker dataBroker, RpcProviderRegistry rpcProviderRegistry) {
48         this.dataBroker = dataBroker;
49         this.rpcProviderRegistry = rpcProviderRegistry;
50     }
51
52     /**
53      * Method called when the blueprint container is created.
54      */
55     public void init() {
56         // initialize data broker
57         this.serviceRegistration = this.rpcProviderRegistry.addRpcImplementation(DesignServicesService.class, new DesignServicesImpl());
58         log.info("DesignServicesImpl Session Initiated");
59     }
60
61     /**
62      * Method called when the blueprint container is destroyed.
63      */
64     public void close() {
65         if(this.serviceRegistration != null){
66             this.serviceRegistration.close();
67         }
68         log.info("DesignServicesImpl Closed");
69     }
70
71
72 }