aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-fe
diff options
context:
space:
mode:
authorKotta, Shireesha (sk434m) <shireesha.kotta@att.com>2018-10-12 17:11:51 -0400
committerMichael Lando <michael.lando@intl.att.com>2018-10-17 06:34:10 +0000
commitab67c5777be4ec71fa0e6a7b376721bf777dc614 (patch)
tree63cf54a3ebd104e1fb58aa4f2f58b137dc5a6f67 /catalog-fe
parent3d5114a2028a6728af8825daa003f1c9a596deba (diff)
Portal integration
Issue-ID: SDC-1749 Update SDC Portal integration decryption for userId Change-Id: Ibaa48057f272955e9711e48f4e74d62df2725b05 Signed-off-by: Kotta, Shireesha (sk434m) <shireesha.kotta@att.com>
Diffstat (limited to 'catalog-fe')
-rw-r--r--catalog-fe/src/main/java/org/openecomp/sdc/fe/servlets/PortalServlet.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/catalog-fe/src/main/java/org/openecomp/sdc/fe/servlets/PortalServlet.java b/catalog-fe/src/main/java/org/openecomp/sdc/fe/servlets/PortalServlet.java
index 56a41988a1..1aeb23e49d 100644
--- a/catalog-fe/src/main/java/org/openecomp/sdc/fe/servlets/PortalServlet.java
+++ b/catalog-fe/src/main/java/org/openecomp/sdc/fe/servlets/PortalServlet.java
@@ -283,7 +283,7 @@ public class PortalServlet extends HttpServlet {
if (cookie.getName().equals(Constants.ECOMP_PORTAL_COOKIE))
userIdcookie = cookie;
if (userIdcookie != null) {
- CipherUtil.decryptPKC(userIdcookie.getValue());
+ CipherUtil.decrypt(userIdcookie.getValue());
//Todo Remove after smoke test & review
/*userId = CipherUtil.decrypt(userIdcookie.getValue(),
PortalApiProperties.getProperty(PortalApiConstants.CSP_GATE_KEEPER_PROD_KEY));*/