summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-BE-common/src/main/java/org/onap/portalapp/portal/utils/EPCommonSystemProperties.java
blob: 80501e394da3fcce810f697c4becbf4942b3574b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/*-
 * ============LICENSE_START==========================================
 * ONAP Portal
 * ===================================================================
 * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
 * ===================================================================
 *
 * Unless otherwise specified, all software contained herein is licensed
 * under the Apache License, Version 2.0 (the "License");
 * you may not use this software except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *             http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * Unless otherwise specified, all documentation contained herein is licensed
 * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
 * you may not use this documentation except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *             https://creativecommons.org/licenses/by/4.0/
 *
 * Unless required by applicable law or agreed to in writing, documentation
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * ============LICENSE_END============================================
 *
 * 
 */
package org.onap.portalapp.portal.utils;

import org.onap.portalsdk.core.util.SystemProperties;

public class EPCommonSystemProperties extends SystemProperties {

	public static final String LOGIN_URL_NO_RET_VAL           		= "login_url_no_ret_val";
	public static final String ECOMP_APP_ID                       	= "ecomp_app_id";
	public static final String SYS_ADMIN_ROLE_ID                  	= "sys_admin_role_id";
	public static final String DUBLICATED_FIELD_VALUE_ECOMP_ERROR 	= "1201";
	public static final String ACCOUNT_ADMIN_ROLE_ID              	= "account_admin_role_id";
	public static final String RESTRICTED_APP_ROLE_ID				= "restricted_app_role_id";
	public static final String FE_URL                        	  	= "frontend_url";
	public static final String HEALTH_POLL_INTERVAL_SECONDS       	= "health_poll_interval_seconds";
	public static final String HEALTHFAIL_ALERT_EVERY_X_INTERVALS 	= "health_fail_alert_every_x_intervals";
	public static final String USER_GUIDE_URL                       = "user_guide_link";
	
	public static final String USER_FIRST_NAME 						= "USER_FIRST_NAME";
	public static final String USER_LAST_NAME						= "USER_LAST_NAME";
	public static final String USER_EMAIL 							= "USER_EMAIL";
	public static final String USER_ORG_USERID						= "USER_ORG_USERID";
	
	public static final String USH_TICKET_URL						= "ush_ticket_url"; 

	public static final String EXTERNAL_API_RESPONSE_CODE			= "External_API_ResponseCode";
	public static final String COOKIE_DOMAIN                        = "cookie_domain";

	public static final String FEEDBACK_EMAIL_ADDRESS				= "feedback_email_address";
	public static final String PORTAL_INFO_URL						= "portal_info_url";
	
	public static final String ONLINE_USER_UPDATE_RATE				= "online_user_update_rate";
	public static final String ONLINE_USER_UPDATE_DURATION			= "online_user_update_duration";
	
	public static final String NOTIFICATION_UPDATE_RATE				= "notification_update_rate";
	public static final String NOTIFICATION_UPDATE_DURATION			= "notification_update_duration";
	
	public static final String WINDOW_WIDTH_THRESHOLD_LEFT_MENU		= "window_width_threshold_left_menu";
	public static final String WINDOW_WIDTH_THRESHOLD_RIGHT_MENU	= "window_width_threshold_right_menu";
		
	public static final String AUDITLOG_DEL_DAY_FROM				= "auditlog_del_day_from";
	public static final String AUDITLOG_DELETE_CRON   				= "auditlog_delete_cron";
	
	public static final String AUTH_USER_SERVER 					= "auth_user_server";
	public static final String EXTERNAL_ACCESS_ENABLE 				= "external_access_enable";

	public static final String EXTERNAL_SYSTEM_NOTIFICATION_URL		= "external_system_notification_url";
	public static final String EXTERNAL_CENTRAL_AUTH_USER_NAME		= "ext_central_access_user_name";
	public static final String EXTERNAL_CENTRAL_AUTH_PASSWORD       = "ext_central_access_password";
	public static final String EXTERNAL_CENTRAL_ACCESS_URL		    = "ext_central_access_url";
	public static final String EXTERNAL_CENTRAL_ACCESS_USER_DOMAIN  = "ext_central_access_user_domain";
	public static final String REMOTE_CENTRALISED_SYSTEM_ACCESS		= "remote_centralized_system_access";

	public static final String WIDGET_MS_PROTOCOL 					= "microservices.widget.protocol";
	public static final String WIDGET_MS_HOSTNAME 					= "microservices.widget.hostname";
	
	public static final String REMOTE_CENTRALIZED_SYSTEM_ACCESS		= "remote_centralized_system_access";
	
	public static final String APP_DISPLAY_PASSWORD 				= "*******";
	
	public static final String MS_WIDGET_LOCAL_PORT                 = "microservices.widget.local.port";
	public static final String MS_WIDGET_UPLOAD_FLAG                = "microservices.widget.upload.flag";
	public static final String UEB_KEY								= "uebkey";
	public static final String AUTHORIZATION 						= "Authorization";
	public static final String USERNAME 						    = "username";
	public static final String PASSWORD 						    = "password";
	
}