Remove Tabs, per Jococo
[aaf/authz.git] / cadi / core / src / main / java / org / onap / aaf / cadi / taf / NullTafResp.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 /**
30  * A Null Pattern for setting responses to "Deny" before configuration is setup.
31  * @author Jonathan
32  *
33  */
34 class NullTafResp implements TafResp {
35     private NullTafResp(){}
36     
37     private static TafResp singleton = new NullTafResp();
38     
39     public static TafResp singleton() {
40         return singleton;
41     }
42     
43     public boolean isValid() {
44         return false;
45     }
46     
47     public RESP isAuthenticated() {
48         return RESP.NO_FURTHER_PROCESSING;
49     }
50     
51     public String desc() {
52         return "All Authentication denied";
53     }
54     
55     public RESP authenticate() throws IOException {
56         return RESP.NO_FURTHER_PROCESSING;
57     }
58
59     public TaggedPrincipal getPrincipal() {
60         return null;
61     }
62
63     /* (non-Javadoc)
64      * @see org.onap.aaf.cadi.taf.TafResp#getTarget()
65      */
66     @Override
67     public String getTarget() {
68         return "unknown";
69     }
70
71     public Access getAccess() {
72         return Access.NULL;
73     }
74
75     /* (non-Javadoc)
76      * @see org.onap.aaf.cadi.taf.TafResp#isFailedAttempt()
77      */
78     public boolean isFailedAttempt() {
79         return true;
80     }
81
82     @Override
83     public float timing() {
84         return 0;
85     }
86
87     @Override
88     public void timing(long start) {
89     }
90     
91     @Override
92     public String taf() {
93         return "NULL";
94     }
95
96 }