re base code
[sdc.git] / common-app-api / src / main / java / org / openecomp / sdc / common / impl / MutableHttpServletRequest.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.common.impl;
22
23 import javax.servlet.http.HttpServletRequest;
24 import javax.servlet.http.HttpServletRequestWrapper;
25 import java.util.*;
26
27 public final class MutableHttpServletRequest extends HttpServletRequestWrapper {
28         // holds custom header and value mapping
29         private final Map<String, String> customHeaders;
30
31         public MutableHttpServletRequest(HttpServletRequest request) {
32                 super(request);
33                 this.customHeaders = new HashMap<>();
34         }
35
36         public void putHeader(String name, String value) {
37                 this.customHeaders.put(name, value);
38         }
39
40         public String getHeader(String name) {
41                 // check the custom headers first
42                 String headerValue = customHeaders.get(name);
43
44                 if (headerValue != null) {
45                         return headerValue;
46                 }
47                 // else return from into the original wrapped object
48                 return ((HttpServletRequest) getRequest()).getHeader(name);
49         }
50
51         public Enumeration<String> getHeaderNames() {
52                 // create a set of the custom header names
53                 Set<String> set = new HashSet<>(customHeaders.keySet());
54
55                 // now add the headers from the wrapped request object
56                 @SuppressWarnings("unchecked")
57                 Enumeration<String> e = ((HttpServletRequest) getRequest()).getHeaderNames();
58                 while (e.hasMoreElements()) {
59                         // add the names of the request headers into the list
60                         String n = e.nextElement();
61                         set.add(n);
62                 }
63
64                 // create an enumeration from the set and return
65                 return Collections.enumeration(set);
66         }
67 }