| |
|
| java.lang.Object org.pnuts.servlet.SessionMap
SessionMap | class SessionMap implements Map(Code) | | Adapter from HttpSession to java.util.Map
|
Inner Class :static class Entry implements Map.Entry | |
clear | public void clear()(Code) | | Removes all session attributes
|
containsKey | public boolean containsKey(Object key)(Code) | | Checks if the session has any attribute with the key
|
containsValue | public boolean containsValue(Object value)(Code) | | Checks if the session has any attribute with the value
|
entrySet | public Set entrySet()(Code) | | Collects the session attributes and return them as a Set of Map.Entry objects.
|
isEmpty | public boolean isEmpty()(Code) | | Checks if the session has any attribute
|
putAll | public void putAll(Map t)(Code) | | Sets a series of attributes to the session
|
size | public int size()(Code) | | Gets the number of session attributes
|
values | public Collection values()(Code) | | Collects the values of the session attributes and return them as a List
|
|
|
|