Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / cadi / core / src / main / java / org / onap / aaf / cadi / filter / FCGet.java
index 9c4cca1..f56cbf2 100644 (file)
@@ -33,44 +33,44 @@ import org.onap.aaf.cadi.config.Get;
  * cleans up the initialization code.
  */
 class FCGet implements Get {
-       /**
-        
-        */
-       private final Access access;
-       private FilterConfig filterConfig;
-       private ServletContext context;
+    /**
+     * 
+     */
+    private final Access access;
+    private FilterConfig filterConfig;
+    private ServletContext context;
 
-       public FCGet(Access access, ServletContext context, FilterConfig filterConfig) {
-               this.access = access;
-               this.context = context;
-               this.filterConfig = filterConfig;
-       }
+    public FCGet(Access access, ServletContext context, FilterConfig filterConfig) {
+        this.access = access;
+        this.context = context;
+        this.filterConfig = filterConfig;
+    }
 
-       public String get(String name, String def, boolean print) {
-               String str = null;
-               // Try Server Context First
-               if(context!=null) {
-                       str = context.getInitParameter(name);
-               }
-               
-               // Try Filter Context next
-               if(str==null && filterConfig != null) {
-                       str = filterConfig.getInitParameter(name);
-               }
-               
-               if(str==null) {
-                       str = access.getProperty(name, def);
-               }
-               // Take def if nothing else
-               if(str==null) {
-                       str = def;
-                       // don't log defaults
-               } else {
-                       str = str.trim(); // this is vital in Property File based values, as spaces can hide easily
-                       if(print) {
-                               access.log(Level.INFO,"Setting", name, "to", str);
-                       }
-               }
-               return str;
-       }
+    public String get(String name, String def, boolean print) {
+        String str = null;
+        // Try Server Context First
+        if(context!=null) {
+            str = context.getInitParameter(name);
+        }
+        
+        // Try Filter Context next
+        if(str==null && filterConfig != null) {
+            str = filterConfig.getInitParameter(name);
+        }
+        
+        if(str==null) {
+            str = access.getProperty(name, def);
+        }
+        // Take def if nothing else
+        if(str==null) {
+            str = def;
+            // don't log defaults
+        } else {
+            str = str.trim(); // this is vital in Property File based values, as spaces can hide easily
+            if(print) {
+                access.log(Level.INFO,"Setting", name, "to", str);
+            }
+        }
+        return str;
+    }
 }