sunlabs.brazil.session |
|
Java Source File Name | Type | Comment |
CacheManager.java | Class | This SessionManager associates an object with a Session ID
to give Handlers the ability to maintain state that lasts for the
duration of a session instead of just for the duration of a request.
It should be installed as a handler, whoses init method will replace
the default session manager.
This version maintains a pool of hashtables. |
PJamaSessionManager.java | Class | Use pJama to implement persistant sessions. |
PropertiesCacheManager.java | Class | Another version of the CacheManager. |
SerializableCacheManager.java | Class | Serializable version of the CacheManager. |
SerialPersist.java | Class | The SerialPersist class is a SessionManager
that uses Java object serialization to make a persistent store of the
session information for a server. |
SessionManager.java | Class | The SessionManager associates an object with a Session ID
to give Handlers the ability to maintain state that lasts for the
duration of a session instead of just for the duration of a request.
An example of session-lifetime information is the set of stocks that
a particular user is interested in. |