Sonar Fixes, Formatting
[aaf/authz.git] / cadi / core / src / main / java / org / onap / aaf / cadi / taf / PuntTafResp.java
index a38c853..aa5f34c 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.
@@ -34,56 +34,64 @@ import org.onap.aaf.cadi.util.Timing;
  *
  */
 public class PuntTafResp implements TafResp {
-       private final String name;
-       private final String desc;
-       private float timing;
-
-       public PuntTafResp(String name, String explanation) {
-               this.name = name;
-               desc = "Not processing this transaction: " + explanation;
-       }
-       
-       public boolean isValid() {
-               return false;
-       }
-       
-       public RESP isAuthenticated() {
-               return RESP.TRY_ANOTHER_TAF;
-       }
-       
-       public String desc() {
-               return desc;
-       }
-       
-       public RESP authenticate() throws IOException {
-               return RESP.TRY_ANOTHER_TAF;
-       }
-
-       public TaggedPrincipal getPrincipal() {
-               return null;
-       }
-
-       public Access getAccess() {
-               return NullTafResp.singleton().getAccess();
-       }
-
-       public boolean isFailedAttempt() {
-               return false;
-       }
-
-       @Override
-       public float timing() {
-               return timing;
-       }
-
-       @Override
-       public void timing(long start) {
-               timing = Timing.millis(start);
-       }
-       
-       @Override
-       public String taf() {
-               return name;
-       }
+    private final String name;
+    private final String desc;
+    private float timing;
+
+    public PuntTafResp(String name, String explanation) {
+        this.name = name;
+        desc = "Not processing this transaction: " + explanation;
+    }
+
+    public boolean isValid() {
+        return false;
+    }
+
+    public RESP isAuthenticated() {
+        return RESP.TRY_ANOTHER_TAF;
+    }
+
+    public String desc() {
+        return desc;
+    }
+
+    public RESP authenticate() throws IOException {
+        return RESP.TRY_ANOTHER_TAF;
+    }
+
+    public TaggedPrincipal getPrincipal() {
+        return null;
+    }
+
+    /* (non-Javadoc)
+     * @see org.onap.aaf.cadi.taf.TafResp#getTarget()
+     */
+    @Override
+    public String getTarget() {
+        return "punt";
+    }
+
+    public Access getAccess() {
+        return NullTafResp.singleton().getAccess();
+    }
+
+    public boolean isFailedAttempt() {
+        return false;
+    }
+
+    @Override
+    public float timing() {
+        return timing;
+    }
+
+    @Override
+    public void timing(long start) {
+        timing = Timing.millis(start);
+    }
+
+    @Override
+    public String taf() {
+        return name;
+    }
 
 }