Coverage Report - org.apache.myfaces.context.portlet.RequestHeaderValuesMap
 
Classes in this File Line Coverage Branch Coverage Complexity
RequestHeaderValuesMap
0%
0/16
0%
0/4
0
 
 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: skitching $)
 35  
  * @version $Revision: 684459 $ $Date: 2008-08-10 06:13:56 -0500 (Sun, 10 Aug 2008) $
 36  
  */
 37  0
 public class RequestHeaderValuesMap extends AbstractAttributeMap<String[]>
 38  
 {
 39  
     private final PortletRequest _portletRequest;
 40  0
     private final Map<String, String[]> _valueCache = new HashMap<String, String[]>();
 41  
 
 42  
     RequestHeaderValuesMap(PortletRequest portletRequest)
 43  0
     {
 44  0
         _portletRequest = portletRequest;
 45  0
     }
 46  
 
 47  
     @SuppressWarnings("unchecked")
 48  
     protected String[] getAttribute(String key)
 49  
     {
 50  0
         String[] ret = _valueCache.get(key);
 51  0
         if (ret == null)
 52  
         {
 53  0
             _valueCache.put(key, ret = toArray(_portletRequest.getProperties(key)));
 54  
         }
 55  
 
 56  0
         return ret;
 57  
     }
 58  
 
 59  
     protected void setAttribute(String key, String[] value)
 60  
     {
 61  0
         throw new UnsupportedOperationException("Cannot set PortletRequest Properties");
 62  
     }
 63  
 
 64  
     protected void removeAttribute(String key)
 65  
     {
 66  0
         throw new UnsupportedOperationException("Cannot remove PortletRequest Properties");
 67  
     }
 68  
 
 69  
     @SuppressWarnings("unchecked")
 70  
     protected Enumeration<String> getAttributeNames()
 71  
     {
 72  0
         return _portletRequest.getPropertyNames();
 73  
     }
 74  
 
 75  
     private String[] toArray(Enumeration<String> e)
 76  
     {
 77  0
         List<String> ret = new ArrayList<String>();
 78  
 
 79  0
         while (e.hasMoreElements())
 80  
         {
 81  0
             ret.add(e.nextElement());
 82  
         }
 83  
 
 84  0
         return ret.toArray(new String[ret.size()]);
 85  
     }
 86  
 }