Package org.apache.catalina.session

This package contains the standard Manager and Session implementations that represent the collection of active sessions and the individual sessions themselves, respectively, that are associated with a Context.

See:
          Description

Class Summary
Constants Manifest constants for the org.apache.catalina.session package.
DistributedManager This manager is responsible for in memory replication of Sessions across a defined Cluster.
FileStore Concrete implementation of the Store interface that utilizes a file per saved Session in a configured directory.
JDBCStore Implementation of the Store interface that stores serialized session objects in a database.
ManagerBase Minimal implementation of the Manager interface that supports no session persistence or distributable capabilities.
PersistentManager Implementation of the Manager interface that makes use of a Store to swap active Sessions to disk.
PersistentManagerBase Extends the ManagerBase class to implement most of the functionality required by a Manager which supports any kind of persistence, even if onlyfor restarts.
StandardManager Standard implementation of the Manager interface that provides simple session persistence across restarts of this component (such as when the entire server is shut down and restarted, or when a particular web application is reloaded.
StandardSessionFacade Facade for the StandardSession object.
StoreBase Abstract implementation of the Store interface to support most of the functionality required by a Store.
 

Package org.apache.catalina.session Description

This package contains the standard Manager and Session implementations that represent the collection of active sessions and the individual sessions themselves, respectively, that are associated with a Context. Additional implementations of the Manager interface can be based upon the supplied convenience base class (ManagerBase), if desired. Different implementations of Session are possible, but a need for functionality beyond what is provided by the standard implementation (StandardSession) is not expected.

The convenience ManagerBase base class is configured by setting the following properties:

The standard implementation of the Manager interface (StandardManager) supports the following additional configuration properties:



Copyright © 2000-2001 Apache Software Foundation. All Rights Reserved.