172f386e3b5ccdb941e3e63f56544c4e762c8543
[aaf/authz.git] / auth / auth-core / src / main / java / org / onap / aaf / auth / rserv / CodeSetter.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.auth.rserv;
23
24 import java.io.IOException;
25
26 import javax.servlet.ServletException;
27 import javax.servlet.http.HttpServletRequest;
28 import javax.servlet.http.HttpServletResponse;
29
30 import org.onap.aaf.misc.env.Trans;
31
32 // Package on purpose.  only want between RServlet and Routes
33 class CodeSetter<TRANS extends Trans> {
34     private HttpCode<TRANS,?> code;
35     private TRANS trans;
36     private HttpServletRequest req;
37     private HttpServletResponse resp;
38     public CodeSetter(TRANS trans, HttpServletRequest req, HttpServletResponse resp) {
39         this.trans = trans;
40         this.req = req;
41         this.resp = resp;
42
43     }
44     public boolean matches(Route<TRANS> route) {
45         // Find best Code in Route based on "Accepts (Get) or Content-Type" (if exists)
46         return (code = route.getCode(trans, req, resp))!=null;
47     }
48
49     public HttpCode<TRANS,?> code() {
50         return code;
51     }
52 }