| |
|
| java.lang.Object org.apache.catalina.session.ManagerBase org.apache.catalina.session.PersistentManagerBase org.apache.catalina.session.PersistentManager
PersistentManager | final public class PersistentManager extends PersistentManagerBase (Code) | | Implementation of the Manager interface that makes use of
a Store to swap active Sessions to disk. It can be configured to
achieve several different goals:
Persist sessions across restarts of the Container
Fault tolerance, keep sessions backed up on disk to allow
recovery in the event of unplanned restarts.
Limit the number of active sessions kept in memory by
swapping less active sessions out to disk.
version: $Revision: 467222 $ author: Kief Morris (kief@kief.com) |
Field Summary | |
protected static String | name The descriptive name of this Manager implementation (for logging). |
Method Summary | |
public String | getInfo() Return descriptive information about this Manager implementation and
the corresponding version number, in the format
<description>/<version> . | public String | getName() Return the descriptive short name of this Manager implementation. |
name | protected static String name(Code) | | The descriptive name of this Manager implementation (for logging).
|
getInfo | public String getInfo()(Code) | | Return descriptive information about this Manager implementation and
the corresponding version number, in the format
<description>/<version> .
|
getName | public String getName()(Code) | | Return the descriptive short name of this Manager implementation.
|
|
|
|