24a79cf304fe977c4b4eb00e52fee86cfddb765d
[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
29 public class TrustNotTafResp implements TafResp {
30         private final TafResp delegate;
31         private final String desc;
32         
33         public TrustNotTafResp(final TafResp delegate, final String desc) {
34                 this.delegate = delegate;
35                 this.desc = desc;
36         }
37         
38         @Override
39         public boolean isValid() {
40                 return false;
41         }
42
43         @Override
44         public String desc() {
45                 return desc;
46         }
47
48         @Override
49         public RESP isAuthenticated() {
50                 return RESP.NO_FURTHER_PROCESSING;
51         }
52
53         @Override
54         public RESP authenticate() throws IOException {
55                 return RESP.NO_FURTHER_PROCESSING;
56         }
57
58         @Override
59         public TaggedPrincipal getPrincipal() {
60                 return delegate.getPrincipal();
61         }
62
63         @Override
64         public Access getAccess() {
65                 return delegate.getAccess();
66         }
67
68         @Override
69         public boolean isFailedAttempt() {
70                 return true;
71         }
72         
73         public String toString() {
74                 return desc();
75         }
76 }