| 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. |
| org.glassfish.web.ha.session.management |
| Modifier and Type | Method and Description |
|---|---|
Manager |
Container.getManager()
Return the Manager with which this Container is associated.
|
Manager |
Session.getManager()
Return the Manager within which this Session is valid.
|
Manager |
Store.getManager()
Return the Manager instance associated with this Store.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Container.setManager(Manager manager)
Set the Manager with which this Container is associated.
|
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.
|
| 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 |
CookiePersistentManager
Session manager for cookie-based persistence, where cookies carry session state.
|
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 only for 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 |
StoreBase.manager
The Manager with which this JDBCStore is associated.
|
protected Manager |
StandardSession.manager
The Manager with which this Session is associated.
|
| Modifier and Type | Field and Description |
|---|---|
protected static ThreadLocal<Manager> |
StandardSession.threadContextManager |
| Modifier and Type | Method and Description |
|---|---|
Manager |
StoreBase.getManager()
Return the Manager with which the Store is associated.
|
Manager |
StandardSession.getManager()
Return the Manager within which this Session is valid.
|
| Modifier and Type | Method and Description |
|---|---|
Session |
StoreBase.readSession(Manager manager,
ObjectInputStream ois)
Create a session object from an input stream.
|
void |
StoreBase.setManager(Manager manager)
Set the Manager with which this Store is associated.
|
void |
StandardSession.setManager(Manager manager)
Set the Manager within which this Session is valid.
|
| Constructor and Description |
|---|
StandardSession(Manager manager)
Construct a new Session associated with the specified Manager.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ReplicationManagerBase<T extends org.glassfish.ha.store.api.Storeable> |
class |
ReplicationWebEventPersistentManager<T extends org.glassfish.ha.store.api.Storeable> |
| Modifier and Type | Method and Description |
|---|---|
Session |
ModifiedAttributeSessionFactory.createSession(Manager mgr)
create a new session
|
Session |
ModifiedSessionFactory.createSession(Manager mgr)
create a new session
|
Session |
FullSessionFactory.createSession(Manager mgr)
create a new session
|
Session |
SessionFactory.createSession(Manager mgr) |
| Constructor and Description |
|---|
BaseHASession(Manager manager)
Creates a new instance of BaseHASession
|
FullHASession(Manager manager)
Creates a new instance of FullHASession
|
ModifiedAttributeHASession(Manager manager)
Creates a new instance of ModifiedAttributeHASession
|
ModifiedHASession(Manager manager)
Creates a new instance of ModifiedHASession
|
Copyright © 2017. All rights reserved.