Remove Tabs, per Jococo
[aaf/authz.git] / cadi / core / src / main / java / org / onap / aaf / cadi / taf / PuntTafResp.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
6  * ===========================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END====================================================
19  *
20  */
21
22 package org.onap.aaf.cadi.taf;
23
24 import java.io.IOException;
25
26 import org.onap.aaf.cadi.Access;
27 import org.onap.aaf.cadi.principal.TaggedPrincipal;
28 import org.onap.aaf.cadi.util.Timing;
29
30 /**
31  * A Punt Resp to make it fast and easy for a Taf to respond that it cannot handle a particular kind of
32  * request.  It is always the same object, so there is no cost for memory, etc.
33  * @author Jonathan
34  *
35  */
36 public class PuntTafResp implements TafResp {
37     private final String name;
38     private final String desc;
39     private float timing;
40
41     public PuntTafResp(String name, String explanation) {
42         this.name = name;
43         desc = "Not processing this transaction: " + explanation;
44     }
45     
46     public boolean isValid() {
47         return false;
48     }
49     
50     public RESP isAuthenticated() {
51         return RESP.TRY_ANOTHER_TAF;
52     }
53     
54     public String desc() {
55         return desc;
56     }
57     
58     public RESP authenticate() throws IOException {
59         return RESP.TRY_ANOTHER_TAF;
60     }
61
62     public TaggedPrincipal getPrincipal() {
63         return null;
64     }
65
66     /* (non-Javadoc)
67      * @see org.onap.aaf.cadi.taf.TafResp#getTarget()
68      */
69     @Override
70     public String getTarget() {
71         return "punt";
72     }
73
74     public Access getAccess() {
75         return NullTafResp.singleton().getAccess();
76     }
77
78     public boolean isFailedAttempt() {
79         return false;
80     }
81
82     @Override
83     public float timing() {
84         return timing;
85     }
86
87     @Override
88     public void timing(long start) {
89         timing = Timing.millis(start);
90     }
91     
92     @Override
93     public String taf() {
94         return name;
95     }
96
97 }