Sonar Fixes, Formatting
[aaf/authz.git] / cadi / core / src / main / java / org / onap / aaf / cadi / filter / CadiApiEnforcementFilter.java
index 292f8e1..d97fe28 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,15 +41,15 @@ import org.onap.aaf.cadi.util.Split;
 
 /**
  * This filter allows one to protect the APIs from data stored in AAF
- * 
+ *
  * @author Instrumental(Jonathan)
  */
 public class CadiApiEnforcementFilter implements Filter {
     private String type;
     private Map<String,List<String>> publicPaths;
     private Access access;
-            
-    
+
+
     public CadiApiEnforcementFilter(Access access, String enforce) throws ServletException {
         this.access = access;
         init(enforce);
@@ -60,12 +60,12 @@ public class CadiApiEnforcementFilter implements Filter {
     public void init(FilterConfig fc) throws ServletException {
         init(fc.getInitParameter(Config.CADI_API_ENFORCEMENT));
         // need the Context for Logging, instantiating ClassLoader, etc
-        ServletContextAccess sca=new ServletContextAccess(fc); 
+        ServletContextAccess sca=new ServletContextAccess(fc);
         if (access==null) {
             access = sca;
         }
     }
-    
+
     private void init(final String ptypes) throws ServletException {
         if(ptypes==null) {
             throw new ServletException("CadiApiEnforcement requires " + Config.CADI_API_ENFORCEMENT + " property");
@@ -99,10 +99,10 @@ public class CadiApiEnforcementFilter implements Filter {
         HttpServletRequest hreq = (HttpServletRequest)req;
         final String meth = hreq.getMethod();
         String path = hreq.getContextPath()+hreq.getPathInfo();
-        
+
         if(path == null || path.isEmpty() || "null".equals(path))
             path = hreq.getRequestURI().substring(hreq.getContextPath().length());
-        
+
         List<String> list = publicPaths.get(meth);
         if(list!=null) {
             for( String p : publicPaths.get(meth)) {