ba64db072d748059bf199d7955c132a34eba1d2d
[aai/sparky-be.git] / src / main / java / org / onap / aai / sparky / viewandinspect / config / TierSupportUiConstants.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.aai.sparky.viewandinspect.config;
22
23 /**
24  * The Class TierSupportUiConstants.
25  */
26 public class TierSupportUiConstants {
27
28   public static String APP_NAME = "AAIUI";
29
30   /** Default to unix file separator if system property file.separator is null */
31   public static final String FILESEP =
32       (System.getProperty("file.separator") == null) ? "/" : System.getProperty("file.separator");
33
34   public static String CONFIG_HOME = System.getProperty("CONFIG_HOME") + FILESEP;
35   public static String AJSC_HOME = System.getProperty("AJSC_HOME") + FILESEP;
36   public static String CONFIG_ROOT_LOCATION =
37       AJSC_HOME + "bundleconfig" + FILESEP + "etc" + FILESEP;
38   public static String STATIC_CONFIG_APP_LOCATION = CONFIG_ROOT_LOCATION + "appprops" + FILESEP;
39   public static String DYNAMIC_CONFIG_APP_LOCATION = CONFIG_HOME;
40
41   public static String CONFIG_OXM_LOCATION = CONFIG_HOME + "model" + FILESEP;
42   public static String CONFIG_FILTERS_BASE_LOCATION = CONFIG_HOME + FILESEP;
43   public static String CONFIG_AUTH_LOCATION = CONFIG_HOME + "auth" + FILESEP;
44
45   public static String HOST = "host";
46   public static String IP_ADDRESS = "ipAddress";
47   public static String PORT = "port";
48   public static String HTTP_PORT = "httpPort";
49   public static String RETRIES = "numRequestRetries";
50   public static String RESOURCE_VERSION = "resource-version";
51   public static String URI = "URI";
52
53   public static String AUTHORIZED_USERS_FILE_LOCATION =
54       DYNAMIC_CONFIG_APP_LOCATION + "authorized-users.config";
55   public static String USERS_FILE_LOCATION = DYNAMIC_CONFIG_APP_LOCATION + "users.config";
56   public static String ROLES_FILE_LOCATION = DYNAMIC_CONFIG_APP_LOCATION + "roles.config";
57   public static String PORTAL_AUTHENTICATION_FILE_LOCATION =
58       DYNAMIC_CONFIG_APP_LOCATION + "portal" + FILESEP + "portal-authentication.properties";
59
60   // Related to data-router properties
61   public static String DR_URI_SUFFIX = "uriSuffix";
62   public static String DR_CERT_NAME = "cert-name";
63   public static String DR_KEYSTORE_PASSWORD = "keystore-password";
64   public static String DR_KEYSTORE = "keystore";
65   public static String DR_CONNECT_TIMEOUT = "connectTimeoutMs";
66   public static String DR_READ_TIMEOUT = "readTimeoutMs";
67
68   public static final String ES_SUGGEST_API = "_suggest";
69   public static final String ES_COUNT_API = "_count";
70   public static final String ES_SEARCH_API = "_search";
71
72   public static final String UI_FILTER_VIEW_NAME_PARAMETER = "viewName";
73   public static final String UI_FILTER_ID_LIST_PARAMETER = "filterIdList";
74
75   public static final String ENTITY_AUTO_SUGGEST_INDEX_NAME_DEFAULT =
76       "entityautosuggestindex-localhost";
77   public static final String ENTITY_AUTO_SUGGEST_SETTINGS_FILE_DEFAULT =
78       "/etc/autoSuggestSettings.json";
79   public static final String ENTITY_AUTO_SUGGEST_MAPPINGS_FILE_DEFAULT =
80       "/etc/autoSuggestMappings.json";
81   public static final String ENTITY_DYNAMIC_MAPPINGS_FILE_DEFAULT = "/etc/dynamicMappings.json";
82   public static final String FILTER_LIST_FILE_DEFAULT =
83       CONFIG_FILTERS_BASE_LOCATION + "filters" + FILESEP + "aaiui_filters.json";
84   public static final String FILTER_MAPPING_FILE_DEFAULT =
85       CONFIG_FILTERS_BASE_LOCATION + "filters" + FILESEP + "aaiui_views.json";
86
87   public static final String SUGGESTION_TEXT_SEPARATOR = " -- ";
88
89   // Injected Attributes
90   public static String URI_ATTR_NAME = "uri";
91
92   public static final String URI_VERSION_REGEX_PATTERN = "aai/v[\\d]+/";
93
94   public static final String getConfigPath(String configFile) {
95     return AJSC_HOME + FILESEP + configFile;
96   }
97
98 }