Catalog alignment
[sdc.git] / catalog-fe / src / main / java / org / openecomp / sdc / fe / impl / HttpRequestInfo.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 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 package org.openecomp.sdc.fe.impl;
22
23 import com.google.common.annotations.VisibleForTesting;
24
25 import javax.servlet.http.HttpServletRequest;
26 import java.io.ByteArrayInputStream;
27 import java.io.InputStream;
28 import java.util.Map;
29
30 public class HttpRequestInfo {
31
32     @VisibleForTesting
33     HttpRequestInfo() {
34     }
35
36     public HttpRequestInfo(HttpServletRequest request, Map<String, String> headersMap, String data) {
37         headers = headersMap;
38         requestURL = request.getRequestURI();
39         requestData = new ByteArrayInputStream(data.getBytes());
40         originServletContext = request.getContextPath();
41     }
42
43     private Map<String, String> headers;
44     private String requestURL;
45     private InputStream requestData;
46     private String originServletContext;
47
48     public Map<String, String> getHeaders() {
49         return headers;
50     }
51
52     public void setHeaders(Map<String, String> headers) {
53         this.headers = headers;
54     }
55
56     public String getRequestURL() {
57         return requestURL;
58     }
59
60     public void setRequestURL(String requestURL) {
61         this.requestURL = requestURL;
62     }
63
64     public InputStream getRequestData() {
65         return requestData;
66     }
67
68     public void setRequestData(InputStream requestData) {
69         this.requestData = requestData;
70     }
71
72     public String getOriginServletContext() {
73         return originServletContext;
74     }
75
76     public void setOriginServletContext(String originServletContext) {
77         this.originServletContext = originServletContext;
78     }
79 }