Implant vid-app-common org.onap.vid.job (main and test)
[vid.git] / vid-app-common / src / main / java / org / onap / vid / properties / VidProperties.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 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.onap.vid.properties;
22
23 import org.apache.commons.lang3.StringUtils;
24 import org.onap.vid.model.ModelConstants;
25 import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
26 import org.onap.portalsdk.core.util.SystemProperties;
27 /**
28  * The Class VidProperties.
29  */
30 public class VidProperties extends SystemProperties {
31
32         //VID General Properties
33         public static final String MSO_DISPLAY_TEST_API_ON_SCREEN="mso.displayTestAPIOnScreen";
34         public static final String MSO_DEFAULT_TEST_API="mso.defaultTestAPI";
35         public static final String MSO_MAX_OPENED_INSTANTIATION_REQUESTS="mso.maxOpenedInstantiationRequests";
36         public static final String MSO_ASYNC_POLLING_INTERVAL_SECONDS="mso.asyncPollingIntervalSeconds";
37         public static final String PROBE_SDC_MODEL_UUID="probe.sdc.model.uuid";
38
39         /** The Constant VID_TRUSTSTORE_FILENAME. */
40         public static final String VID_TRUSTSTORE_FILENAME = "vid.truststore.filename";
41
42         /** The Constant VID_TRUSTSTORE_PASSWD_X. */
43         public static final String VID_TRUSTSTORE_PASSWD_X = "vid.truststore.passwd.x";
44
45         /** The Constant FILESEPARATOR. */
46         public static final String FILESEPARATOR = (System.getProperty("file.separator") == null) ? "/" : System.getProperty("file.separator");
47
48         /** The Constant LOG. */
49         private static final EELFLoggerDelegate LOG = EELFLoggerDelegate.getLogger(VidProperties.class);
50
51         public static final String VID_JOB_MAX_HOURS_IN_PROGRESS = "vid.asyncJob.maxHoursInProgress";
52
53         public static final String VID_THREAD_COUNT = "vid.thread.count";
54         public static final String VID_THREAD_TIMEOUT = "vid.thread.timeout";
55
56         /**
57          * Gets the asdc model namespace prefix property
58          *
59          * @return the property value or a default value
60          */
61         public static String getAsdcModelNamespace() {
62                 String methodName = "getAsdcModelNamespace ";
63                 String asdcModelNamespace = ModelConstants.DEFAULT_ASDC_MODEL_NAMESPACE;
64                 try {
65                         asdcModelNamespace = SystemProperties.getProperty(ModelConstants.ASDC_MODEL_NAMESPACE);
66                         if ( asdcModelNamespace == null || asdcModelNamespace.isEmpty()) {
67                                 asdcModelNamespace = ModelConstants.DEFAULT_ASDC_MODEL_NAMESPACE;
68                         }
69                 }
70                 catch ( Exception e ) {
71                         LOG.error (EELFLoggerDelegate.errorLogger, methodName + "unable to find the value, using the default "
72                                         + ModelConstants.DEFAULT_ASDC_MODEL_NAMESPACE);
73                         asdcModelNamespace = ModelConstants.DEFAULT_ASDC_MODEL_NAMESPACE;
74                 }
75                 return (asdcModelNamespace);
76         }
77         /**
78          * Gets the specified property value. If the property is not defined, returns a default value.
79          *
80          * @return the property value or a default value
81          */
82         public static String getPropertyWithDefault ( String propName, String defaultValue ) {
83                 String methodName = "getPropertyWithDefault ";
84                 String propValue = defaultValue;
85                 try {
86                         propValue = SystemProperties.getProperty(propName);
87                         if ( propValue == null || propValue.isEmpty()) {
88                                 propValue = defaultValue;
89                         }
90                 }
91                 catch ( Exception e ) {
92                         LOG.error (EELFLoggerDelegate.errorLogger, methodName + "unable to find the value, using the default "
93                                         + defaultValue);
94                         propValue = defaultValue;
95                 }
96                 return (propValue);
97         }
98
99         public static long getLongProperty(String key) {
100                 return getLongProperty(key, 0);
101         }
102
103         public static long getLongProperty(String key, long defaultValue) {
104                 if (!containsProperty(key)) {
105                         LOG.debug(EELFLoggerDelegate.debugLogger, "No such property: {}. {} value is used", key, defaultValue);
106                         return defaultValue;
107                 }
108                 String configValue = getProperty(key);
109                 if (StringUtils.isNumeric(configValue)) {
110                         return Long.parseLong(configValue);
111                 } else {
112                         LOG.debug(EELFLoggerDelegate.debugLogger, "{} property value is not valid: {}. {} value is used", key, configValue, defaultValue);
113                         return defaultValue;
114                 }
115         }
116 }