From eb8de3664309f577362df7710d6cd93d00a734e2 Mon Sep 17 00:00:00 2001 From: vasraz Date: Wed, 13 Apr 2022 12:50:49 +0100 Subject: Fix encoding/decoding issue Change-Id: If7a770548702cb9e6bb2d9e866c99c0396f74ee4 Signed-off-by: Vasyl Razinkov Issue-ID: SDC-3967 --- .../main/java/org/openecomp/sdc/webseal/simulator/SdcProxy.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'utils/webseal-simulator/src/main/java') diff --git a/utils/webseal-simulator/src/main/java/org/openecomp/sdc/webseal/simulator/SdcProxy.java b/utils/webseal-simulator/src/main/java/org/openecomp/sdc/webseal/simulator/SdcProxy.java index 0637f7e29f..10a6bb8e74 100644 --- a/utils/webseal-simulator/src/main/java/org/openecomp/sdc/webseal/simulator/SdcProxy.java +++ b/utils/webseal-simulator/src/main/java/org/openecomp/sdc/webseal/simulator/SdcProxy.java @@ -20,10 +20,11 @@ package org.openecomp.sdc.webseal.simulator; +import static java.nio.charset.StandardCharsets.UTF_8; + import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; -import java.io.UnsupportedEncodingException; import java.net.MalformedURLException; import java.net.URL; import java.net.URLEncoder; @@ -204,7 +205,7 @@ public class SdcProxy extends HttpServlet { return contextPaths; } - private String getUri(HttpServletRequest request, Map requestParameters) throws UnsupportedEncodingException { + private String getUri(HttpServletRequest request, Map requestParameters) { String suffix = request.getRequestURI(); if (getContextPaths().stream().anyMatch(request.getRequestURI()::contains)) { suffix = alignUrlProxy(suffix); @@ -316,7 +317,7 @@ public class SdcProxy extends HttpServlet { return SDC1 + requestURI; } - private StringBuilder alignUrlParameters(Map requestParameters) throws UnsupportedEncodingException { + private StringBuilder alignUrlParameters(Map requestParameters) { final var query = new StringBuilder(); for (final Entry entry : requestParameters.entrySet()) { for (final String value : entry.getValue()) { @@ -325,7 +326,7 @@ public class SdcProxy extends HttpServlet { } else { query.append("&"); } - query.append(String.format("&%s=%s", URLEncoder.encode(entry.getKey(), "UTF-8"), URLEncoder.encode(value, "UTF-8"))); + query.append(String.format("&%s=%s", URLEncoder.encode(entry.getKey(), UTF_8), URLEncoder.encode(value, UTF_8))); } } return query; -- cgit 1.2.3-korg