Change the header to SO
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / openecomp / mso / apihandlerinfra / MsoPropertiesUtils.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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 package org.openecomp.mso.apihandlerinfra;
21
22 import org.openecomp.mso.logger.MessageEnum;
23 import org.openecomp.mso.logger.MsoLogger;
24 import org.openecomp.mso.properties.MsoJavaProperties;
25 import org.openecomp.mso.properties.MsoPropertiesFactory;
26
27 public class MsoPropertiesUtils {
28
29     private final static String MSO_PROP_APIHANDLER_INFRA = "MSO_PROP_APIHANDLER_INFRA";
30
31     private static MsoPropertiesFactory msoPropertiesFactory = new MsoPropertiesFactory ();
32
33     private static MsoLogger msoLogger = MsoLogger.getMsoLogger (MsoLogger.Catalog.APIH);
34
35     private static boolean noProperties = true;
36
37     public synchronized static MsoJavaProperties loadMsoProperties () {
38         MsoJavaProperties msoProperties;
39         try {
40             msoProperties = msoPropertiesFactory.getMsoJavaProperties (MSO_PROP_APIHANDLER_INFRA);
41         } catch (Exception e) {
42             msoLogger.error (MessageEnum.APIH_LOAD_PROPERTIES_FAIL, MSO_PROP_APIHANDLER_INFRA, "", "", MsoLogger.ErrorCode.DataError, "Exception when loading MSO Properties", e);
43             return null;
44         }
45
46         if (msoProperties != null && msoProperties.size () > 0) {
47                 noProperties = false;
48             msoLogger.info (MessageEnum.APIH_PROPERTY_LOAD_SUC, "", "");
49             return msoProperties;
50         } else {
51             msoLogger.error (MessageEnum.APIH_NO_PROPERTIES, MSO_PROP_APIHANDLER_INFRA, "", "", MsoLogger.ErrorCode.DataError, "No MSO APIH_INFRA Properties found");
52             return null;
53         }
54     }
55     
56     public synchronized static final boolean getNoPropertiesState() {
57         return noProperties;
58     }
59 }