[AAI-2787] | Update AAI UI with portal sdk 2.6.0
[aai/sparky-be.git] / sparkybe-onap-service / src / main / java / org / onap / aai / sparky / security / portal / PortalRestAPICentralServiceImpl.java
index 922597d..90c5fe9 100644 (file)
@@ -233,13 +233,18 @@ public class PortalRestAPICentralServiceImpl
   }
 
 
-  @Override
+  @Deprecated
   public boolean isAppAuthenticated(HttpServletRequest request) throws PortalAPIException {
+    return  isAppAuthenticated(request,null);
+  }
+
+  @Override
+  public boolean isAppAuthenticated(HttpServletRequest request,Map<String, String> paramMap) throws PortalAPIException {
     LOG.debug("Authentication request");
     String nameSpace = PortalApiProperties.getProperty(PortalApiConstants.AUTH_NAMESPACE);
     boolean accessAllowed = false;
     try {
-      accessAllowed = AuthUtil.isAccessAllowed(request, nameSpace);
+      accessAllowed = AuthUtil.isAccessAllowed(request, nameSpace,getCredentials());
     } catch (Exception e) {
       String response = "PortalRestAPICentralServiceImpl.isAppAuthenticated failed";
       LOG.error(response, e);