| java.lang.Object com.sun.xml.ws.runtime.util.SessionManager com.sun.xml.ws.runtime.util.SessionManagerImpl
SessionManagerImpl | public class SessionManagerImpl extends SessionManager (Code) | | In memory implementation of SessionManager
author: Mike Grogan |
SessionManagerImpl | public SessionManagerImpl()(Code) | | Creates a new instance of SessionManagerImpl
|
createSession | public Session createSession(String key, Class clasz)(Code) | | Creates a Session with the given key, using a new instance
of the specified Class as a holder for user-defined data. The
specified Class must have a default ctor.
Parameters: key - The Session key to be used. |
createSession | public Session createSession(String key, Object obj)(Code) | | Creates a Session with the given key, using the specified Object
as a holder for user-defined data.
Parameters: key - The Session key to be used. Parameters: obj - The object to use as a holder for user data in the session. |
createSession | public Session createSession(String key)(Code) | | Creates a Session with the given key, using an instance of
java.util.Hashtable asa holder for user-defined data.
Parameters: key - The Session key to be used. |
getKeys | public Set<String> getKeys()(Code) | | Returns the Set of valid Session keys.
|
getSession | public Session getSession(String key)(Code) | | Returns an existing session identified by the Key else null
Parameters: key - The Session key. |
saveSession | public void saveSession(String key)(Code) | | Does nothing in this implementation.
Parameters: key - The key of the session to be saved |
terminateSession | public void terminateSession(String key)(Code) | | Removed the Session with the given key.
Parameters: key - The key of the Session to be removed. |
|
|