simple.http.session |
|
Java Source File Name | Type | Comment |
Activator.java | Class | The Activator object is responsible for creating
and retrieving Session objects. |
DefaultIdentifier.java | Class | The DefaultIdentifier object provides a secure
implementation of the Identifier . |
DefaultMaintainer.java | Class | The DefaultMaintainer object provides a lease
management component that can be used to renew the lease for
a specific Store . |
DefaultStore.java | Class | The DefaultStore object provides the simplest
implementation of a Store . |
Delegate.java | Class | The Delegate object wraps a Module
so that the lease and storage management can be aggregated
under the umbrella of a single interface. |
Identifier.java | Interface | The Identifier is responsible for extracting and
creating the session identifier from the collection of cookies
sent with the HTTP request. |
IdentifierFactory.java | Class | The IdentifierFactory retrives the identifier
implementation for the system. |
Maintainer.java | Interface | The Maintainer is used to determine how long
a session is to remain active between references. |
MaintainerFactory.java | Class | The MaintainerFactory retrives the maintainer
implementation for the system. |
Manager.java | Class | The Manager object provides the interface to the
session management system. |
Module.java | Interface | The Module object is used internally to represent
a session. |
ModuleFactory.java | Class | The ModuleFactory creates the Module
objects used by the session management system. |
ReflectionStore.java | Class | The ReflectionStore enables initialization to
be achieved using arbitrary prepare methods. |
Registry.java | Class | The Registry object is used to acquire and store
the Module objects used by the session management
system. |
Session.java | Interface | The Session object is used to store session data
relating to a specific HTTP client. |
Store.java | Interface | The Store object provides the persistence scheme
used by sessions. |
StoreException.java | Class | The StoreException is used to indicate that some
operation failed when attempting to use a Store . |
StoreFactory.java | Class | The StoreFactory retrieves the Store
implementation for the system. |