9484458c43799ecaf0e268bf39f7b3a6d44c0608
[aaf/authz.git] / cadi / core / src / main / java / org / onap / aaf / cadi / taf / HttpTaf.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.LifeForm;
29
30 /**
31  * A TAF which is in a specific HTTP environment in which the engine implements 
32  * javax Servlet.
33  * 
34  * Using the Http Request and Response interfaces takes the effort out of implementing in almost any kind of
35  * HTTP Container or Engine.
36  *  
37  * @author Jonathan
38  *
39  */
40 public interface HttpTaf {
41         /**
42          * validate
43          * 
44          * Validate the Request, and respond with created TafResp object.
45          * 
46          * @param reading
47          * @param req
48          * @param resp
49          * @return
50          */
51         public TafResp validate(LifeForm reading, HttpServletRequest req, HttpServletResponse resp);
52         
53         /**
54          * Re-Validate Credential
55          * 
56          * @param prin
57          * @return
58          */
59         public CachedPrincipal.Resp revalidate(CachedPrincipal prin,Object state);
60 }