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