From: sebdet Date: Fri, 23 Oct 2020 12:32:24 +0000 (+0200) Subject: Fix the AAF login X-Git-Tag: 5.1.4^0 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=clamp.git;a=commitdiff_plain;h=011b25b15daebaf1e46d2b0d94c522f2dc9c67f5 Fix the AAF login Current code does not check the right Principal class name Issue-ID: CLAMP-956 Signed-off-by: sebdet Change-Id: I779d6c15ae7fc0240becf106ed40cd3c0b80f22e --- diff --git a/src/main/java/org/onap/clamp/clds/ClampServlet.java b/src/main/java/org/onap/clamp/clds/ClampServlet.java index 6adb76cb..8ebc7a16 100644 --- a/src/main/java/org/onap/clamp/clds/ClampServlet.java +++ b/src/main/java/org/onap/clamp/clds/ClampServlet.java @@ -35,6 +35,8 @@ import java.util.ArrayList; import java.util.Arrays; import java.util.List; +import java.util.stream.Collector; +import java.util.stream.Collectors; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; @@ -71,11 +73,10 @@ public class ClampServlet extends CamelHttpTransportServlet { private static List permissionList; - private synchronized String[] loadDynamicAuthenticationClasses() { - String[] authenticationObjects = WebApplicationContextUtils.getWebApplicationContext(getServletContext()) - .getEnvironment().getProperty(AUTHENTICATION_CLASS).split(","); - Arrays.stream(authenticationObjects).forEach(className -> className.trim()); - return authenticationObjects; + private synchronized List loadDynamicAuthenticationClasses() { + return Arrays.stream(WebApplicationContextUtils.getWebApplicationContext(getServletContext()) + .getEnvironment().getProperty(AUTHENTICATION_CLASS).split(",")).map(className -> className.trim()) + .collect(Collectors.toList()); } private synchronized List getPermissionList() { @@ -112,7 +113,7 @@ public class ClampServlet extends CamelHttpTransportServlet { @Override protected void doService(HttpServletRequest request, HttpServletResponse response) { Principal principal = request.getUserPrincipal(); - if (principal != null && Arrays.stream(loadDynamicAuthenticationClasses()) + if (principal != null && loadDynamicAuthenticationClasses().stream() .anyMatch(className -> className.equals(principal.getClass().getName()))) { // When AAF is enabled, there is a need to provision the permissions to Spring // system