Convert Sparky to Spring-Boot
[aai/sparky-be.git] / sparkybe-onap-service / src / main / java / org / onap / aai / sparky / viewandinspect / config / SparkyConstants.java
1 /**
2  * ============LICENSE_START===================================================
3  * SPARKY (AAI UI service)
4  * ============================================================================
5  * Copyright © 2017 AT&T Intellectual Property.
6  * Copyright © 2017 Amdocs
7  * All rights reserved.
8  * ============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=====================================================
21  *
22  * ECOMP and OpenECOMP are trademarks
23  * and service marks of AT&T Intellectual Property.
24  */
25 package org.onap.aai.sparky.viewandinspect.config;
26
27 /**
28  * The Class TierSupportUiConstants.
29  */
30 public class SparkyConstants {
31
32   public static String APP_NAME = "AAIUI";
33
34   /** Default to unix file separator if system property file.separator is null */
35   public static final String FILESEP =
36       (System.getProperty("file.separator") == null) ? "/" : System.getProperty("file.separator");
37  
38   public static String CONFIG_HOME = System.getProperty("CONFIG_HOME") + 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 = DYNAMIC_CONFIG_APP_LOCATION + "authorized-users.config";
54   public static String USERS_FILE_LOCATION = DYNAMIC_CONFIG_APP_LOCATION + "users.config";
55   public static String ROLES_FILE_LOCATION = DYNAMIC_CONFIG_APP_LOCATION + "roles.config";
56   public static String PORTAL_AUTHENTICATION_FILE_LOCATION = DYNAMIC_CONFIG_APP_LOCATION + "portal" + FILESEP + "portal-authentication.properties";
57   
58   // Related to data-router properties
59   public static String DR_URI_SUFFIX = "uriSuffix";
60   public static String DR_CERT_NAME = "cert-name";
61   public static String DR_KEYSTORE_PASSWORD = "keystore-password";
62   public static String DR_KEYSTORE = "keystore";
63   public static String DR_CONNECT_TIMEOUT = "connectTimeoutMs";
64   public static String DR_READ_TIMEOUT = "readTimeoutMs";
65   
66   public static final String APP_JSON = "application/json";
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 =
82       "/etc/dynamicMappings.json";
83   /*public static final String FILTER_LIST_FILE_DEFAULT =
84       CONFIG_FILTERS_BASE_LOCATION + "filters" + FILESEP + "aaiui_filters.json";
85   public static final String FILTER_MAPPING_FILE_DEFAULT =
86       CONFIG_FILTERS_BASE_LOCATION + "filters" + FILESEP + "aaiui_views.json";*/
87   
88   public static final String SUBSCRIPTION_OI_MAPPING =
89       CONFIG_FILTERS_BASE_LOCATION + "subscription_object_inspector_mapping.json";
90   
91   public static final String SUGGESTION_TEXT_SEPARATOR = " -- ";
92
93   // Injected Attributes
94   public static String URI_ATTR_NAME = "uri";
95
96   public static final String URI_VERSION_REGEX_PATTERN = "aai/v[\\d]+/";
97   
98   public static final String getConfigPath(String configFile){
99     return CONFIG_HOME + FILESEP + configFile;
100   }
101
102 }