Coverage Report - org.apache.myfaces.context.servlet.SessionMap
 
Classes in this File Line Coverage Branch Coverage Complexity
SessionMap
0%
0/23
0%
0/10
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.servlet;
 20  
 
 21  
 import java.util.Enumeration;
 22  
 import java.util.Map;
 23  
 
 24  
 import javax.servlet.http.HttpServletRequest;
 25  
 import javax.servlet.http.HttpSession;
 26  
 
 27  
 import org.apache.myfaces.shared_impl.util.NullEnumeration;
 28  
 import org.apache.myfaces.util.AbstractAttributeMap;
 29  
 
 30  
 
 31  
 /**
 32  
  * HttpSession attibutes as Map.
 33  
  *
 34  
  * @author Anton Koinov (latest modification by $Author: bommel $)
 35  
  * @version $Revision: 693059 $ $Date: 2008-09-08 06:42:28 -0500 (Mon, 08 Sep 2008) $
 36  
  */
 37  
 public final class SessionMap extends AbstractAttributeMap<Object>
 38  
 {
 39  
     private final HttpServletRequest _httpRequest;
 40  
 
 41  
     SessionMap(final HttpServletRequest httpRequest)
 42  0
     {
 43  0
         _httpRequest = httpRequest;
 44  0
     }
 45  
 
 46  
     @Override
 47  
     protected Object getAttribute(final String key)
 48  
     {
 49  0
         final HttpSession httpSession = getSession();
 50  0
         return (httpSession == null) ? null : httpSession.getAttribute(key);
 51  
     }
 52  
 
 53  
     @Override
 54  
     protected void setAttribute(final String key, final Object value)
 55  
     {
 56  0
         _httpRequest.getSession(true).setAttribute(key, value);
 57  0
     }
 58  
 
 59  
     @Override
 60  
     protected void removeAttribute(final String key)
 61  
     {
 62  0
         final HttpSession httpSession = getSession();
 63  0
         if (httpSession != null)
 64  
         {
 65  0
             httpSession.removeAttribute(key);
 66  
         }
 67  0
     }
 68  
 
 69  
     @Override
 70  
     @SuppressWarnings("unchecked")
 71  
     protected Enumeration<String> getAttributeNames()
 72  
     {
 73  0
         final HttpSession httpSession = getSession();
 74  0
         return (httpSession == null) ? NullEnumeration.instance() : httpSession.getAttributeNames();
 75  
     }
 76  
 
 77  
     private HttpSession getSession()
 78  
     {
 79  0
         return _httpRequest.getSession(false);
 80  
     }
 81  
 
 82  
     @Override
 83  
     public void putAll(final Map t)
 84  
     {
 85  0
         throw new UnsupportedOperationException();
 86  
     }
 87  
 
 88  
     /**
 89  
      * This will clear the session without invalidation. If no session has been created, it will simply return.
 90  
      */
 91  
     @Override
 92  
     public void clear()
 93  
     {
 94  0
         final HttpSession session = getSession();
 95  0
         if (session == null)
 96  0
             return;
 97  0
         for (final Enumeration attributeNames = session.getAttributeNames(); attributeNames.hasMoreElements();)
 98  
         {
 99  0
             final String attributeName = (String) attributeNames.nextElement();
 100  0
             session.removeAttribute(attributeName);
 101  0
         }
 102  0
     }
 103  
 }