update sparky with configurable features
[aai/sparky-be.git] / sparkybe-onap-service / src / main / java / org / onap / aai / sparky / viewandinspect / config / SparkyConstants.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 SparkyConstants {
27
28   public static String APP_NAME = "AAIUI";
29   public static final String OBFUSCATION_PREFIX = "OBF:";
30
31   /** Default to unix file separator if system property file.separator is null */
32   public static final String FILESEP =
33       (System.getProperty("file.separator") == null) ? "/" : System.getProperty("file.separator");
34  
35   public static String CONFIG_HOME = System.getProperty("CONFIG_HOME") + FILESEP;
36   public static String DYNAMIC_CONFIG_APP_LOCATION = CONFIG_HOME;
37
38   public static String CONFIG_OXM_LOCATION = CONFIG_HOME + "model" + FILESEP;
39   public static String CONFIG_FILTERS_BASE_LOCATION = CONFIG_HOME + FILESEP;
40   //public static String CONFIG_AUTH_LOCATION = CONFIG_HOME + "auth" + FILESEP;
41
42   public static String HOST = "host";
43   public static String IP_ADDRESS = "ipAddress";
44   public static String PORT = "port";
45   public static String HTTP_PORT = "httpPort";
46   public static String RETRIES = "numRequestRetries";
47   public static String RESOURCE_VERSION = "resource-version";
48   public static String URI = "URI";
49
50   public static String AUTHORIZED_USERS_FILE_LOCATION = DYNAMIC_CONFIG_APP_LOCATION + "authorized-users.config";
51   public static String USERS_FILE_LOCATION = DYNAMIC_CONFIG_APP_LOCATION + "users.config";
52   public static String ROLES_FILE_LOCATION = DYNAMIC_CONFIG_APP_LOCATION + "roles.config";
53   public static String PORTAL_AUTHENTICATION_FILE_LOCATION = DYNAMIC_CONFIG_APP_LOCATION + "portal" + FILESEP + "portal-authentication.properties";
54   
55   // Related to data-router properties
56   public static String DR_URI_SUFFIX = "uriSuffix";
57   public static String DR_CERT_NAME = "cert-name";
58   public static String DR_KEYSTORE_PASSWORD = "keystore-password";
59   public static String DR_KEYSTORE = "keystore";
60   public static String DR_CONNECT_TIMEOUT = "connectTimeoutMs";
61   public static String DR_READ_TIMEOUT = "readTimeoutMs";
62   
63   public static final String APP_JSON = "application/json";
64   
65   public static final String ES_SUGGEST_API = "_suggest";
66   public static final String ES_COUNT_API = "_count";
67   public static final String ES_SEARCH_API = "_search";
68   public static final String SS_QUERY_API = "query";
69   
70   public static final String UI_FILTER_VIEW_NAME_PARAMETER = "viewName";
71   public static final String UI_FILTER_ID_LIST_PARAMETER = "filterIdList";
72   
73   public static final String ENTITY_AUTO_SUGGEST_INDEX_NAME_DEFAULT = 
74       "entityautosuggestindex-localhost";
75   public static final String ENTITY_AUTO_SUGGEST_SETTINGS_FILE_DEFAULT =
76       "/etc/autoSuggestSettings.json";
77   public static final String ENTITY_AUTO_SUGGEST_MAPPINGS_FILE_DEFAULT =
78       "/etc/autoSuggestMappings.json";
79   public static final String ENTITY_DYNAMIC_MAPPINGS_FILE_DEFAULT =
80       "/etc/dynamicMappings.json";
81   /*public static final String FILTER_LIST_FILE_DEFAULT =
82       CONFIG_FILTERS_BASE_LOCATION + "filters" + FILESEP + "aaiui_filters.json";
83   public static final String FILTER_MAPPING_FILE_DEFAULT =
84       CONFIG_FILTERS_BASE_LOCATION + "filters" + FILESEP + "aaiui_views.json";*/
85   
86   public static final String SUBSCRIPTION_OI_MAPPING =
87       CONFIG_FILTERS_BASE_LOCATION + "subscription_object_inspector_mapping.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 = "/v[\\d]+/";
95   
96   public static final String getConfigPath(String configFile){
97     return CONFIG_HOME + FILESEP + configFile;
98   }
99
100 }