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