Package | Description |
---|---|
org.apache.catalina | |
org.apache.catalina.core | |
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 . |
Modifier and Type | Method and Description |
---|---|
Manager |
Cluster.createManager(String name)
Create a new manager which will use this cluster to replicate its
sessions.
|
Manager |
Session.getManager()
Return the Manager within which this Session is valid.
|
Manager |
Store.getManager()
Return the Manager instance associated with this Store.
|
Manager |
Container.getManager()
Return the Manager with which this Container is associated.
|
Modifier and Type | Method and Description |
---|---|
void |
Cluster.registerManager(Manager manager)
Register a manager with the cluster.
|
void |
Cluster.removeManager(Manager manager)
Removes a manager from the cluster
|
void |
Session.setManager(Manager manager)
Set the Manager within which this Session is valid.
|
void |
Store.setManager(Manager manager)
Set the Manager associated with this Store.
|
void |
Container.setManager(Manager manager)
Set the Manager with which this Container is associated.
|
Modifier and Type | Field and Description |
---|---|
protected Manager |
ContainerBase.manager
The Manager implementation with which this Container is associated.
|
Modifier and Type | Method and Description |
---|---|
Manager |
ContainerBase.getManager()
Return the Manager with which this Container is associated.
|
Modifier and Type | Method and Description |
---|---|
void |
ContainerBase.setManager(Manager manager)
Set the Manager with which this Container is associated.
|
Modifier and Type | Class and Description |
---|---|
class |
ManagerBase
Minimal implementation of the Manager interface that supports
no session persistence or distributable capabilities.
|
class |
PersistentManager
Implementation of the Manager interface that makes use of
a Store to swap active Sessions to disk.
|
class |
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.
|
class |
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.
|
Modifier and Type | Field and Description |
---|---|
protected Manager |
StandardSession.manager
The Manager with which this Session is associated.
|
protected Manager |
StoreBase.manager
The Manager with which this JDBCStore is associated.
|
Modifier and Type | Method and Description |
---|---|
Manager |
StandardSession.getManager()
Return the Manager within which this Session is valid.
|
Manager |
StoreBase.getManager()
Return the Manager with which the Store is associated.
|
Modifier and Type | Method and Description |
---|---|
void |
StandardSession.setManager(Manager manager)
Set the Manager within which this Session is valid.
|
void |
StoreBase.setManager(Manager manager)
Set the Manager with which this Store is associated.
|
Constructor and Description |
---|
StandardSession(Manager manager)
Construct a new Session associated with the specified Manager.
|
Copyright © 2017 JBoss by Red Hat. All rights reserved.