7050595cc5d33e83c4cc1e880aab7140829d02a3
[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 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  */
23 package org.onap.aai.sparky.viewandinspect.config;
24
25 /**
26  * The Class TierSupportUiConstants.
27  */
28 public class TierSupportUiConstants {
29
30   public static String APP_NAME = "AAIUI";
31
32   /** Default to unix file separator if system property file.separator is null */
33   public static final String FILESEP =
34       (System.getProperty("file.separator") == null) ? "/" : System.getProperty("file.separator");
35
36   public static String CONFIG_HOME = System.getProperty("CONFIG_HOME") + FILESEP;
37   public static String AJSC_HOME = System.getProperty("AJSC_HOME") + FILESEP;
38   public static String CONFIG_ROOT_LOCATION =
39       AJSC_HOME + "bundleconfig" + FILESEP + "etc" + FILESEP;
40   public static String STATIC_CONFIG_APP_LOCATION = CONFIG_ROOT_LOCATION + "appprops" + FILESEP;
41   public static String DYNAMIC_CONFIG_APP_LOCATION = CONFIG_HOME;
42
43   public static String CONFIG_OXM_LOCATION = CONFIG_HOME + "model" + FILESEP;
44   public static String CONFIG_FILTERS_BASE_LOCATION = CONFIG_HOME + FILESEP;
45   public static String CONFIG_AUTH_LOCATION = CONFIG_HOME + "auth" + FILESEP;
46
47   public static String HOST = "host";
48   public static String IP_ADDRESS = "ipAddress";
49   public static String PORT = "port";
50   public static String HTTP_PORT = "httpPort";
51   public static String RETRIES = "numRequestRetries";
52   public static String RESOURCE_VERSION = "resource-version";
53   public static String URI = "URI";
54
55   public static String AUTHORIZED_USERS_FILE_LOCATION =
56       DYNAMIC_CONFIG_APP_LOCATION + "authorized-users.config";
57   public static String USERS_FILE_LOCATION = DYNAMIC_CONFIG_APP_LOCATION + "users.config";
58   public static String ROLES_FILE_LOCATION = DYNAMIC_CONFIG_APP_LOCATION + "roles.config";
59   public static String PORTAL_AUTHENTICATION_FILE_LOCATION =
60       DYNAMIC_CONFIG_APP_LOCATION + "portal" + FILESEP + "portal-authentication.properties";
61
62   // Related to data-router properties
63   public static String DR_URI_SUFFIX = "uriSuffix";
64   public static String DR_CERT_NAME = "cert-name";
65   public static String DR_KEYSTORE_PASSWORD = "keystore-password";
66   public static String DR_KEYSTORE = "keystore";
67   public static String DR_CONNECT_TIMEOUT = "connectTimeoutMs";
68   public static String DR_READ_TIMEOUT = "readTimeoutMs";
69
70   public static final String ES_SUGGEST_API = "_suggest";
71   public static final String ES_COUNT_API = "_count";
72   public static final String ES_SEARCH_API = "_search";
73
74   public static final String UI_FILTER_VIEW_NAME_PARAMETER = "viewName";
75   public static final String UI_FILTER_ID_LIST_PARAMETER = "filterIdList";
76
77   public static final String ENTITY_AUTO_SUGGEST_INDEX_NAME_DEFAULT =
78       "entityautosuggestindex-localhost";
79   public static final String ENTITY_AUTO_SUGGEST_SETTINGS_FILE_DEFAULT =
80       "/etc/autoSuggestSettings.json";
81   public static final String ENTITY_AUTO_SUGGEST_MAPPINGS_FILE_DEFAULT =
82       "/etc/autoSuggestMappings.json";
83   public static final String ENTITY_DYNAMIC_MAPPINGS_FILE_DEFAULT = "/etc/dynamicMappings.json";
84   public static final String FILTER_LIST_FILE_DEFAULT =
85       CONFIG_FILTERS_BASE_LOCATION + "filters" + FILESEP + "aaiui_filters.json";
86   public static final String FILTER_MAPPING_FILE_DEFAULT =
87       CONFIG_FILTERS_BASE_LOCATION + "filters" + FILESEP + "aaiui_views.json";
88
89   public static final String SUGGESTION_TEXT_SEPARATOR = " -- ";
90
91   // Injected Attributes
92   public static String URI_ATTR_NAME = "uri";
93
94   public static final String URI_VERSION_REGEX_PATTERN = "aai/v[\\d]+/";
95
96   public static final String getConfigPath(String configFile) {
97     return AJSC_HOME + FILESEP + configFile;
98   }
99
100 }