Apache Tomcat 6.0.53

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.
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.
ManagerBase.SessionTiming  
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.
StandardSession Standard implementation of the Session interface.
StandardSessionFacade Facade for the StandardSession object.
StoreBase Abstract implementation of the Store interface to support most of the functionality required by a Store.
 

Exception Summary
TooManyActiveSessionsException An exception that indicates the maximum number of active sessions has been reached and the server is refusing to create any new sessions.
 

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:


Apache Tomcat 6.0.53

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