7e8347940564cd0859a9852b211718658f0e251b
[aaf/authz.git] / cadi / core / src / main / java / org / onap / aaf / cadi / taf / NullTaf.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 javax.servlet.http.HttpServletRequest;
25 import javax.servlet.http.HttpServletResponse;
26
27 import org.onap.aaf.cadi.CachedPrincipal;
28 import org.onap.aaf.cadi.Taf;
29 import org.onap.aaf.cadi.CachedPrincipal.Resp;
30
31
32 /**
33  * This TAF is set at the very beginning of Filters and Valves so that if any configuration issues hit while
34  * starting, the default behavior is to shut down traffic rather than leaving an open hole
35  * 
36  * @author Jonathan
37  *
38  */
39 public class NullTaf implements Taf, HttpTaf {
40     // Singleton Pattern
41     public NullTaf() {}
42
43     /**
44      * validate 
45      * 
46      * Always Respond with a NullTafResp, which declares it is unauthenticated, and unauthorized
47      */
48     public TafResp validate(LifeForm reading, String... info) {
49         return NullTafResp.singleton();
50     }
51
52     /**
53      * validate 
54      * 
55      * Always Respond with a NullTafResp, which declares it is unauthenticated, and unauthorized
56      */
57     public TafResp validate(LifeForm reading, HttpServletRequest req, HttpServletResponse resp) {
58         return NullTafResp.singleton();
59     }
60
61     public Resp revalidate(CachedPrincipal prin, Object state) {
62         return Resp.NOT_MINE;
63     }
64 }