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.Collections;
22  import java.util.Enumeration;
23  import java.util.Map;
24  
25  import javax.servlet.http.HttpServletRequest;
26  import javax.servlet.http.HttpSession;
27  
28  import org.apache.myfaces.util.AbstractThreadSafeAttributeMap;
29  
30  
31  /**
32   * HttpSession attibutes as Map.
33   *
34   * @author Anton Koinov (latest modification by $Author$)
35   * @version $Revision$ $Date$
36   */
37  public final class SessionMap extends AbstractThreadSafeAttributeMap<Object>
38  {
39      private final HttpServletRequest _httpRequest;
40  
41      SessionMap(final HttpServletRequest httpRequest)
42      {
43          _httpRequest = httpRequest;
44      }
45  
46      @Override
47      protected Object getAttribute(final String key)
48      {
49          final HttpSession httpSession = _getSession();
50          return (httpSession == null) ? null : httpSession.getAttribute(key);
51      }
52  
53      @Override
54      protected void setAttribute(final String key, final Object value)
55      {
56          _httpRequest.getSession(true).setAttribute(key, value);
57      }
58  
59      @Override
60      protected void removeAttribute(final String key)
61      {
62          final HttpSession httpSession = _getSession();
63          if (httpSession != null)
64          {
65              httpSession.removeAttribute(key);
66          }
67      }
68  
69      @Override
70      @SuppressWarnings("unchecked")
71      protected Enumeration<String> getAttributeNames()
72      {
73          final HttpSession httpSession = _getSession();
74          return (httpSession == null) ? Collections.emptyEnumeration() : httpSession.getAttributeNames();
75      }
76  
77      @Override
78      public void putAll(final Map<? extends String, ? extends Object> t)
79      {
80          throw new UnsupportedOperationException();
81      }
82      
83      // we can use public void clear() from super-class
84      
85      private HttpSession _getSession()
86      {
87          return _httpRequest.getSession(false);
88      }
89  
90  }