af6ef9ccdd9529de3f19c587525f45d213f75c4f
[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         public Access getAccess() {
64                 return Access.NULL;
65         }
66
67         /* (non-Javadoc)
68          * @see org.onap.aaf.cadi.taf.TafResp#isFailedAttempt()
69          */
70         public boolean isFailedAttempt() {
71                 return true;
72         }
73
74         @Override
75         public float timing() {
76                 return 0;
77         }
78
79         @Override
80         public void timing(long start) {
81         }
82         
83         @Override
84         public String taf() {
85                 return "NULL";
86         }
87
88 }