Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / cadi / core / src / main / java / org / onap / aaf / cadi / principal / TaggedPrincipal.java
index a3b07c6..9dddcd6 100644 (file)
@@ -26,35 +26,35 @@ import org.onap.aaf.cadi.CadiException;
 
 public abstract class TaggedPrincipal implements Principal {
 
-       public TaggedPrincipal() {
-               tagLookup = null;
-       }
-
-       public TaggedPrincipal(final TagLookup tl) {
-               tagLookup = tl;
-       }
-
-       public abstract String tag();  // String representing what kind of Authentication occurred.
-
-       public interface TagLookup {
-               public String lookup() throws CadiException;
-       }
-       
-       private TagLookup tagLookup;
-       
-       public void setTagLookup(TagLookup tl) {
-               tagLookup = tl;
-       }
-
-       public String personalName() {
-               if(tagLookup == null) {
-                       return getName();
-               }
-               try {
-                       return tagLookup.lookup();
-               } catch (CadiException e) {
-                       return getName();
-               }
-       }
+    public TaggedPrincipal() {
+        tagLookup = null;
+    }
+
+    public TaggedPrincipal(final TagLookup tl) {
+        tagLookup = tl;
+    }
+
+    public abstract String tag();  // String representing what kind of Authentication occurred.
+
+    public interface TagLookup {
+        public String lookup() throws CadiException;
+    }
+    
+    private TagLookup tagLookup;
+    
+    public void setTagLookup(TagLookup tl) {
+        tagLookup = tl;
+    }
+
+    public String personalName() {
+        if(tagLookup == null) {
+            return getName();
+        }
+        try {
+            return tagLookup.lookup();
+        } catch (CadiException e) {
+            return getName();
+        }
+    }
 
 }