diff options
author | Arul.Nambi <arul.nambi@amdocs.com> | 2018-12-05 13:41:57 -0500 |
---|---|---|
committer | Arul.Nambi <arul.nambi@amdocs.com> | 2018-12-05 13:59:34 -0500 |
commit | 53d13ff36532723582f55febce79de2282e46cde (patch) | |
tree | dc2f70379c46334a0b0f540b64c0a518c06881f3 /sparkybe-onap-application/config/portal/BOOT-INF/classes | |
parent | 4d27f8557d5d59c8be5a342f0e16a18ef400cae5 (diff) |
Updating https certificate
Issue-ID: AAI-1992
Change-Id: Ied8d4468dbd2f477595a5802d3c8e0b0789d13e8
Signed-off-by: Arul.Nambi <arul.nambi@amdocs.com>
Diffstat (limited to 'sparkybe-onap-application/config/portal/BOOT-INF/classes')
-rw-r--r-- | sparkybe-onap-application/config/portal/BOOT-INF/classes/portal.properties | 29 |
1 files changed, 16 insertions, 13 deletions
diff --git a/sparkybe-onap-application/config/portal/BOOT-INF/classes/portal.properties b/sparkybe-onap-application/config/portal/BOOT-INF/classes/portal.properties index ae86ac6..f823712 100644 --- a/sparkybe-onap-application/config/portal/BOOT-INF/classes/portal.properties +++ b/sparkybe-onap-application/config/portal/BOOT-INF/classes/portal.properties @@ -1,17 +1,19 @@ +################################################################################ +############################## Portal properties ############################### +################################################################################ + # Java class that implements the ECOMP role and user mgt API -portal.api.impl.class=org.openecomp.sparky.security.portal.PortalRestAPIServiceImpl +portal.api.impl.class = org.onap.aai.sparky.security.portal.PortalRestAPICentralServiceImpl + # Instance of ECOMP Portal where the app has been on-boarded -# ecomp_rest_url=http://ecomp.homer.att.com/ecompportal/auxapi # use insecure http for dev purposes to avoid self-signed certificate -ecomp_rest_url=<%= @ECOMP_REST_URL %> +ecomp_rest_url = https://portal.api.simpledemo.onap.org:30225/ONAPPORTAL/auxapi -### CSP-SSO # Standard global logon page -ecomp_redirect_url=<%= @ECOMP_REDIRECT_URL %> -# Test global logon page only accepts registered users -# ecomp_redirect_url=https://webtest.csp.att.com/ecompportal/ecompportal/process_csp -# CSP settings -csp_cookie_name=<%= @CSP_COOKIE_NAME %> +ecomp_redirect_url = https://portal.api.simpledemo.onap.org:30225/ONAPPORTAL/login.htm + +# Name of cookie to extract on login request +csp_cookie_name = EPService # Alternate values: DEVL, V_DEVL, V_PROD csp_gate_keeper_prod_key = PROD @@ -21,11 +23,12 @@ ueb_listeners_enable=false ueb_app_key=<%= @UEB_APP_KEY %> # Use this tag if the app is centralized -role_access_centralized = <%= @ROLE_ACCESS_CENTRALIZED %> +role_access_centralized = remote # Connection and Read timeout values -ext_req_connection_timeout = <%= @PORTAL_CONNECTION_TIMEOUT %> -ext_req_read_timeout = <%= @PORTAL_READ_TIMEOUT %> +ext_req_connection_timeout = 15000 +ext_req_read_timeout = 20000 #Add AAF namespace if the app is centralized -aaf_namespace = <%= @AAF_NAMESPACE %> +aaf_namespace = org.onap.aai + |