6dc4134946e76aa93cd0f4b1f7e1ef177a4e48ee
[appc.git] / appc-adapters / appc-rest-healthcheck-adapter / appc-rest-healthcheck-adapter-bundle / src / main / java / org / onap / appc / adapter / restHealthcheck / RestHealthcheckActivator.java
1
2 /*-
3  * ============LICENSE_START=======================================================
4  * ONAP : APPC
5  * ================================================================================
6  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
7  * ================================================================================
8  * Copyright (C) 2017 Amdocs
9  * =============================================================================
10  * Licensed under the Apache License, Version 2.0 (the "License");
11  * you may not use this file except in compliance with the License.
12  * You may obtain a copy of the License at
13  * 
14  *      http://www.apache.org/licenses/LICENSE-2.0
15  * 
16  * Unless required by applicable law or agreed to in writing, software
17  * distributed under the License is distributed on an "AS IS" BASIS,
18  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19  * See the License for the specific language governing permissions and
20  * limitations under the License.
21  * 
22  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
23  * ============LICENSE_END=========================================================
24  */
25 package org.onap.appc.adapter.restHealthcheck;
26
27 import org.onap.appc.Constants;
28 import org.onap.appc.adapter.restHealthcheck.impl.RestHealthcheckAdapterImpl;
29 import org.onap.appc.configuration.Configuration;
30 import org.onap.appc.configuration.ConfigurationFactory;
31 import org.onap.appc.i18n.Msg;
32 import com.att.eelf.configuration.EELFLogger;
33 import com.att.eelf.configuration.EELFManager;
34 import org.osgi.framework.BundleActivator;
35 import org.osgi.framework.BundleContext;
36 import org.osgi.framework.ServiceRegistration;
37
38 public class RestHealthcheckActivator implements BundleActivator {
39     /**
40      * The bundle registration
41      */
42     private ServiceRegistration registration = null;
43     private static final EELFLogger logger = EELFManager.getInstance().getLogger(RestHealthcheckActivator.class);
44
45     /**
46      * The configuration object used to configure this bundle
47      */
48     private Configuration configuration;
49
50     /**
51      * Called when this bundle is started so the Framework can perform the bundle-specific activities necessary to start
52      * this bundle. This method can be used to register services or to allocate any resources that this bundle needs.
53      * <p>
54      * This method must complete and return to its caller in a timely manner.
55      * </p>
56      * 
57      * @param context
58      *            The execution context of the bundle being started.
59      * @throws java.lang.Exception
60      *             If this method throws an exception, this bundle is marked as stopped and the Framework will remove
61      *             this bundle's listeners, unregister all services registered by this bundle, and release all services
62      *             used by this bundle.
63      * @see org.osgi.framework.BundleActivator#start(org.osgi.framework.BundleContext)
64      */
65     @Override
66     public void start(BundleContext context) throws Exception {
67         logger.info("Starting bundle " + getName());
68        /* The reference to the actual implementation object that implements the services */
69         RestHealthcheckAdapter adapter = new RestHealthcheckAdapterImpl();
70
71         if (registration == null) {
72             registration = context.registerService(RestHealthcheckAdapter.class, adapter, null);
73         }
74
75     }
76     /**
77      * Called when this bundle is stopped so the Framework can perform the bundle-specific activities necessary to stop
78      * the bundle. In general, this method should undo the work that the BundleActivator.start method started. There
79      * should be no active threads that were started by this bundle when this bundle returns. A stopped bundle must not
80      * call any Framework objects.
81      * <p>
82      * This method must complete and return to its caller in a timely manner.
83      * </p>
84      * 
85      * @param context
86      *            The execution context of the bundle being stopped.
87      * @throws java.lang.Exception
88      *             If this method throws an exception, the bundle is still marked as stopped, and the Framework will
89      *             remove the bundle's listeners, unregister all services registered by the bundle, and release all
90      *             services used by the bundle. *
91      * @see org.osgi.framework.BundleActivator#stop(org.osgi.framework.BundleContext)
92      */
93     @Override
94     public void stop(BundleContext context) throws Exception {
95         logger.info("Stopping bundle " + getName());
96
97         if (registration != null) {
98
99             registration.unregister();
100             registration = null;
101
102         }
103     }
104     public String getName() {
105         return "APPC Rest Healthcheck adapter";
106     }
107
108 }