fixing warnings from checkstyle in common-app-api
[sdc.git] / common-app-api / src / main / java / org / openecomp / sdc / fe / config / FeEcompErrorManager.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 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
21 package org.openecomp.sdc.fe.config;
22
23 import org.openecomp.sdc.common.config.AbsEcompErrorManager;
24 import org.openecomp.sdc.common.config.EcompErrorEnum;
25 import org.openecomp.sdc.common.config.IEcompConfigurationManager;
26
27 public class FeEcompErrorManager extends AbsEcompErrorManager {
28
29     private static volatile FeEcompErrorManager instance;
30     private static ConfigurationManager configurationManager;
31
32     private FeEcompErrorManager() {
33     }
34
35     public static FeEcompErrorManager getInstance() {
36         if (instance == null) {
37
38             instance = init();
39         }
40         return instance;
41     }
42
43     private static synchronized FeEcompErrorManager init() {
44         if (instance == null) {
45             instance = new FeEcompErrorManager();
46             configurationManager = ConfigurationManager.getConfigurationManager();
47         }
48         return instance;
49     }
50
51     @Override
52     public IEcompConfigurationManager getConfigurationManager() {
53         return configurationManager;
54     }
55
56     public void logFeHealthCheckRecovery(String context) {
57         processEcompError(context, EcompErrorEnum.FeHealthCheckRecovery);
58     }
59
60     public void logFeHealthCheckError(String context) {
61         processEcompError(context, EcompErrorEnum.FeHealthCheckError);
62     }
63
64     public void logFeHttpLoggingError(String context) {
65         processEcompError(context, EcompErrorEnum.FeHttpLoggingError);
66     }
67
68     public void logFePortalServletError(String context) {
69         processEcompError(context, EcompErrorEnum.FePortalServletError);
70     }
71
72     public void logFeHealthCheckGeneralError(String context) {
73         processEcompError(context, EcompErrorEnum.FeHealthCheckGeneralError);
74     }
75
76 }