|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectnet.sf.click.util.SessionMap
Provides a Map adaptor for HttpSession objects. A SessionMap instance is available in each Velocity page using the name "session".
For example suppose we have a User object in the session with the attribute name "user" when a user is logged on. We can display the users name in the page when the are logged onto the system.
#if ($session.user) $session.user.fullname you are logged on. #else You are not logged on. #endThe ClickServlet adds a SessionMap instance to the Velocity Context before it is merged with the page template.
The SessionMap supports FlashAttribute
which when accessed via
get(Object)
are removed from the session.
Nested Class Summary |
Nested classes inherited from class java.util.Map |
Map.Entry |
Field Summary | |
protected HttpSession |
session
The internal session attribute. |
Constructor Summary | |
SessionMap(HttpSession value)
Create a HttpSession Map adaptor. |
Method Summary | |
void |
clear()
|
boolean |
containsKey(Object key)
|
boolean |
containsValue(Object value)
This method is not supported and will throw UnsupportedOperationException if invoked. |
Set |
entrySet()
|
Object |
get(Object key)
If the stored object is a FlashObject this method will return the FlashObject value and then remove it from the session. |
boolean |
isEmpty()
|
Set |
keySet()
|
Object |
put(Object key,
Object value)
|
void |
putAll(Map map)
|
Object |
remove(Object key)
|
int |
size()
|
Collection |
values()
This method is not supported and will throw UnsupportedOperationException if invoked. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface java.util.Map |
equals, hashCode |
Field Detail |
protected HttpSession session
Constructor Detail |
public SessionMap(HttpSession value)
value
- the http sessionMethod Detail |
public int size()
size
in interface Map
Map.size()
public boolean isEmpty()
isEmpty
in interface Map
Map.isEmpty()
public boolean containsKey(Object key)
containsKey
in interface Map
Map.containsKey(Object)
public boolean containsValue(Object value)
containsValue
in interface Map
Map.containsValue(Object)
public Object get(Object key)
get
in interface Map
Map.get(Object)
public Object put(Object key, Object value)
put
in interface Map
Map.put(Object, Object)
public Object remove(Object key)
remove
in interface Map
Map.remove(Object)
public void putAll(Map map)
putAll
in interface Map
Map.putAll(Map)
public void clear()
clear
in interface Map
Map.clear()
public Set keySet()
keySet
in interface Map
Map.keySet()
public Collection values()
values
in interface Map
Map.values()
public Set entrySet()
entrySet
in interface Map
Map.entrySet()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |