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.portlet;
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.portlet.PortletRequest;
28  
29  import org.apache.myfaces.util.AbstractAttributeMap;
30  
31  /**
32   * PortletRequest header values (multi-value headers) as Map of String[].
33   *
34   * @author  Stan Silvert (latest modification by $Author: lu4242 $)
35   * @version $Revision: 1000660 $ $Date: 2010-09-23 18:02:43 -0500 (Thu, 23 Sep 2010) $
36   */
37  public class RequestHeaderValuesMap extends AbstractAttributeMap
38  {
39      private final PortletRequest _portletRequest;
40      private final Map            _valueCache = new HashMap();
41  
42      RequestHeaderValuesMap(PortletRequest portletRequest)
43      {
44          _portletRequest = portletRequest;
45      }
46  
47      protected Object getAttribute(String key)
48      {
49          Object ret = _valueCache.get(key);
50          if (ret == null)
51          {
52              _valueCache.put(key, ret = toArray(_portletRequest
53                  .getProperties(key)));
54          }
55  
56          return ret;
57      }
58  
59      protected void setAttribute(String key, Object value)
60      {
61          throw new UnsupportedOperationException(
62              "Cannot set PortletRequest Properties");
63      }
64  
65      protected void removeAttribute(String key)
66      {
67          throw new UnsupportedOperationException(
68              "Cannot remove PortletRequest Properties");
69      }
70  
71      protected Enumeration getAttributeNames()
72      {
73          return _portletRequest.getPropertyNames();
74      }
75  
76      private String[] toArray(Enumeration e)
77      {
78          List ret = new ArrayList();
79  
80          while (e.hasMoreElements())
81          {
82              ret.add(e.nextElement());
83          }
84  
85          return (String[]) ret.toArray(new String[ret.size()]);
86      }
87  }