Sonar Fixes, Formatting
[aaf/authz.git] / cadi / core / src / main / java / org / onap / aaf / cadi / CadiWrap.java
index 34d1162..102782a 100644 (file)
@@ -7,9 +7,9 @@
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -41,23 +41,23 @@ import org.onap.aaf.cadi.util.Timing;
 /**
  * Inherit the HttpServletRequestWrapper, which calls methods of delegate it's created with, but
  * overload the key security mechanisms with CADI mechanisms
- * 
+ *
  * This works with mechanisms working strictly with HttpServletRequest (i.e. Servlet Filters)
- * 
+ *
  * Specialty cases, i.e. Tomcat, which for their containers utilize their own mechanisms and Wrappers, you may
  * need something similar.  See AppServer specific code (i.e. tomcat) for these.
- * 
+ *
  * @author Jonathan
  *
  */
 public class CadiWrap extends HttpServletRequestWrapper implements HttpServletRequest, BasicCred {
     private TaggedPrincipal principal;
     private Lur lur;
-    private String user; // used to set user/pass from brain-dead protocols like WSSE 
+    private String user; // used to set user/pass from brain-dead protocols like WSSE
     private byte[] password;
     private PermConverter pconv;
-    private Access access; 
-    
+    private Access access;
+
     /**
      * Standard Wrapper constructor for Delegate pattern
      * @param request
@@ -93,35 +93,35 @@ public class CadiWrap extends HttpServletRequestWrapper implements HttpServletRe
     }
 
     /**
-     * Part of the HTTP Security API.  Return the User Principal associated with this HTTP 
+     * Part of the HTTP Security API.  Return the User Principal associated with this HTTP
      * Transaction.
      */
     @Override
     public Principal getUserPrincipal() {
         return principal;
     }
-    
+
     /**
      * This is the key API call for AUTHZ in J2EE.  Given a Role (String passed in), is the user
      * associated with this HTTP Transaction allowed to function in this Role?
-     * 
+     *
      * For CADI, we pass the responsibility for determining this to the "LUR", which may be
      * determined by the Enterprise.
-     * 
+     *
      * Note: Role check is also done in "CadiRealm" in certain cases...
-     * 
+     *
      *
      */
     @Override
     public boolean isUserInRole(String perm) {
         return perm==null?false:checkPerm(access,"isUserInRole",principal,pconv,lur,perm);
     }
-    
+
     public static boolean checkPerm(Access access, String caller, Principal principal, PermConverter pconv, Lur lur, String perm) {
         if (principal== null) {
             access.log(Level.AUDIT,caller, "No Principal in Transaction");
             return false;
-        } else { 
+        } else {
             final long start = System.nanoTime();
             perm = pconv.convert(perm);
             if (lur.fish(principal,lur.createPerm(perm))) {
@@ -135,10 +135,10 @@ public class CadiWrap extends HttpServletRequestWrapper implements HttpServletRe
 
     }
 
-    /** 
+    /**
      * CADI Function (Non J2EE standard). GetPermissions will read the Permissions from AAF (if configured) and Roles from Local Lur, etc
      *  as implemented with lur.fishAll
-     *  
+     *
      *  To utilize, the Request must be a "CadiWrap" object, then call.
      */
     public List<Permission> getPermissions(Principal p) {
@@ -148,7 +148,7 @@ public class CadiWrap extends HttpServletRequestWrapper implements HttpServletRe
     }
     /**
      * Allow setting of tafResp and lur after construction
-     * 
+     *
      * This can happen if the CadiWrap is constructed in a Valve other than CadiValve
      */
     public void set(TafResp tafResp, Lur lur) {
@@ -175,12 +175,12 @@ public class CadiWrap extends HttpServletRequestWrapper implements HttpServletRe
     public void setCred(byte[] passwd) {
         password = passwd;
     }
-    
+
     public CadiWrap setPermConverter(PermConverter pc) {
         pconv = pc;
         return this;
     }
-    
+
     // Add a feature
     public void invalidate(String id) {
         if (lur instanceof EpiLur) {
@@ -189,11 +189,11 @@ public class CadiWrap extends HttpServletRequestWrapper implements HttpServletRe
             ((CachingLur<?>)lur).remove(id);
         }
     }
-    
+
     public Lur getLur() {
         return lur;
     }
-    
+
     public Access access() {
         return access;
     }