Method Summary |
|
public void | clear() Remove all of the Sessions in this Store. |
public String | getDirectory() Return the directory path for this Store. |
public String | getInfo() Return descriptive information about this Store implementation and
the corresponding version number, in the format
<description>/<version> . |
public int | getSize() Return the number of Sessions present in this Store. |
public String | getStoreName() Return the name for this Store, used for logging. |
public String | getThreadName() Return the thread name for this Store. |
public String[] | keys() Return an array containing the session identifiers of all Sessions
currently saved in this Store. |
public Session | load(String id) Load and return the Session associated with the specified session
identifier from this Store, without removing it. |
public void | remove(String id) Remove the Session with the specified session identifier from
this Store, if present. |
public void | save(Session session) Save the specified Session into this Store. |
public void | setDirectory(String path) Set the directory path for this Store. |