Remove Tabs, per Jococo
[aaf/authz.git] / cadi / core / src / main / java / org / onap / aaf / cadi / taf / TrustNotTafResp.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 public class TrustNotTafResp implements TafResp {
31     private final TafResp delegate;
32     private final String desc;
33     private float timing;
34     
35     public TrustNotTafResp(final TafResp delegate, final String desc) {
36         this.delegate = delegate;
37         this.desc = desc;
38     }
39     
40     @Override
41     public boolean isValid() {
42         return false;
43     }
44
45     @Override
46     public String desc() {
47         return desc;
48     }
49
50     @Override
51     public RESP isAuthenticated() {
52         return RESP.NO_FURTHER_PROCESSING;
53     }
54
55     @Override
56     public RESP authenticate() throws IOException {
57         return RESP.NO_FURTHER_PROCESSING;
58     }
59
60     @Override
61     public TaggedPrincipal getPrincipal() {
62         return delegate.getPrincipal();
63     }
64
65     /* (non-Javadoc)
66      * @see org.onap.aaf.cadi.taf.TafResp#getTarget()
67      */
68     @Override
69     public String getTarget() {
70         return delegate.getTarget();
71     }
72
73     @Override
74     public Access getAccess() {
75         return delegate.getAccess();
76     }
77
78     @Override
79     public boolean isFailedAttempt() {
80         return true;
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 toString() {
94         return desc();
95     }
96     
97     @Override
98     public String taf() {
99         return "TrustNot";
100     }
101
102 }