Fix NPE on service import
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / components / impl / CADIHealthCheck.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20 package org.openecomp.sdc.be.components.impl;
21
22 import static org.openecomp.sdc.common.api.Constants.HC_COMPONENT_CADI;
23 import static org.openecomp.sdc.common.api.HealthCheckInfo.HealthCheckStatus.DOWN;
24
25 import org.openecomp.sdc.common.api.HealthCheckInfo;
26 import org.openecomp.sdc.common.log.wrappers.Logger;
27 import org.springframework.stereotype.Component;
28
29 @Component
30 public class CADIHealthCheck {
31
32     private static final Logger log = Logger.getLogger(CADIHealthCheck.class.getName());
33     private static CADIHealthCheck cadiHealthCheckInstance = new CADIHealthCheck();
34     private static HealthCheckInfo.HealthCheckStatus isCADIUpOrDown = DOWN;
35
36     public static CADIHealthCheck getCADIHealthCheckInstance() {
37         return cadiHealthCheckInstance;
38     }
39
40     public static HealthCheckInfo getCADIStatus() {
41         log.debug("getCADIStatus: Checking whether CADI was up or down while its init.");
42         String description = "OK";
43         if (isCADIUpOrDown == DOWN) {
44             description = "CADI filter failed initialization";
45         }
46         return new HealthCheckInfo(HC_COMPONENT_CADI, isCADIUpOrDown, null, description);
47     }
48
49     public void setIsCADIUp(HealthCheckInfo.HealthCheckStatus cadiStatus) {
50         if (log.isDebugEnabled()) {
51             log.debug("Setting cadiHealthCheckInstance status to: {}", cadiStatus.toString());
52         }
53         isCADIUpOrDown = cadiStatus;
54     }
55 }