View Javadoc

1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.myfaces.context.servlet;
20  
21  import java.util.ArrayList;
22  import java.util.Enumeration;
23  import java.util.HashMap;
24  import java.util.List;
25  import java.util.Map;
26  
27  import javax.servlet.http.HttpServletRequest;
28  
29  import org.apache.myfaces.util.AbstractAttributeMap;
30  
31  
32  /**
33   * HttpServletRequest header values (multi-value headers) as Map of String[].
34   * 
35   * @author Anton Koinov (latest modification by $Author: lu4242 $)
36   * @version $Revision: 1000660 $ $Date: 2010-09-23 18:02:43 -0500 (Thu, 23 Sep 2010) $
37   */
38  public class RequestHeaderValuesMap extends AbstractAttributeMap
39  {
40      private final HttpServletRequest _httpServletRequest;
41      private final Map                _valueCache = new HashMap();
42  
43      RequestHeaderValuesMap(HttpServletRequest httpServletRequest)
44      {
45          _httpServletRequest = httpServletRequest;
46      }
47  
48      protected Object getAttribute(String key)
49      {
50          Object ret = _valueCache.get(key);
51          if (ret == null)
52          {
53              _valueCache.put(key, ret = toArray(_httpServletRequest
54                  .getHeaders(key)));
55          }
56  
57          return ret;
58      }
59  
60      protected void setAttribute(String key, Object value)
61      {
62          throw new UnsupportedOperationException(
63              "Cannot set HttpServletRequest HeaderValues");
64      }
65  
66      protected void removeAttribute(String key)
67      {
68          throw new UnsupportedOperationException(
69              "Cannot remove HttpServletRequest HeaderValues");
70      }
71  
72      protected Enumeration getAttributeNames()
73      {
74          return _httpServletRequest.getHeaderNames();
75      }
76  
77      private String[] toArray(Enumeration e)
78      {
79          List ret = new ArrayList();
80  
81          while (e.hasMoreElements())
82          {
83              ret.add(e.nextElement());
84          }
85  
86          return (String[]) ret.toArray(new String[ret.size()]);
87      }
88  }