Uses of Interface
org.apache.catalina.Manager
-
Packages that use Manager Package Description org.apache.catalina org.apache.catalina.core org.apache.catalina.session This package contains the standardManagerandSessionimplementations that represent the collection of active sessions and the individual sessions themselves, respectively, that are associated with aContext.org.glassfish.web.ha.session.management -
-
Uses of Manager in org.apache.catalina
Methods in org.apache.catalina that return Manager Modifier and Type Method Description ManagerContainer. getManager()Return the Manager with which this Container is associated.ManagerSession. getManager()Return the Manager within which this Session is valid.ManagerStore. getManager()Return the Manager instance associated with this Store.Methods in org.apache.catalina with parameters of type Manager Modifier and Type Method Description voidContainer. setManager(Manager manager)Set the Manager with which this Container is associated.voidSession. setManager(Manager manager)Set the Manager within which this Session is valid.voidStore. setManager(Manager manager)Set the Manager associated with this Store. -
Uses of Manager in org.apache.catalina.core
Fields in org.apache.catalina.core declared as Manager Modifier and Type Field Description protected ManagerContainerBase. managerThe Manager implementation with which this Container is associated.Methods in org.apache.catalina.core that return Manager Modifier and Type Method Description ManagerContainerBase. getManager()Return the Manager with which this Container is associated.Methods in org.apache.catalina.core with parameters of type Manager Modifier and Type Method Description voidContainerBase. setManager(Manager manager)Set the Manager with which this Container is associated. -
Uses of Manager in org.apache.catalina.session
Classes in org.apache.catalina.session that implement Manager Modifier and Type Class Description classCookiePersistentManagerSession manager for cookie-based persistence, where cookies carry session state.classManagerBaseMinimal implementation of the Manager interface that supports no session persistence or distributable capabilities.classPersistentManagerImplementation of the Manager interface that makes use of a Store to swap active Sessions to disk.classPersistentManagerBaseExtends the ManagerBase class to implement most of the functionality required by a Manager which supports any kind of persistence, even if only for restarts.classStandardManagerStandard 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.Fields in org.apache.catalina.session declared as Manager Modifier and Type Field Description protected ManagerStandardSession. managerThe Manager with which this Session is associated.protected ManagerStoreBase. managerThe Manager with which this JDBCStore is associated.Fields in org.apache.catalina.session with type parameters of type Manager Modifier and Type Field Description protected static ThreadLocal<Manager>StandardSession. threadContextManagerMethods in org.apache.catalina.session that return Manager Modifier and Type Method Description ManagerStandardSession. getManager()Return the Manager within which this Session is valid.ManagerStoreBase. getManager()Return the Manager with which the Store is associated.Methods in org.apache.catalina.session with parameters of type Manager Modifier and Type Method Description SessionStoreBase. readSession(Manager manager, ObjectInputStream ois)Create a session object from an input stream.voidStandardSession. setManager(Manager manager)Set the Manager within which this Session is valid.voidStoreBase. setManager(Manager manager)Set the Manager with which this Store is associated.Constructors in org.apache.catalina.session with parameters of type Manager Constructor Description StandardSession(Manager manager)Construct a new Session associated with the specified Manager. -
Uses of Manager in org.glassfish.web.ha.session.management
Classes in org.glassfish.web.ha.session.management that implement Manager Modifier and Type Class Description classReplicationManagerBase<T extends org.glassfish.ha.store.api.Storeable>classReplicationWebEventPersistentManager<T extends org.glassfish.ha.store.api.Storeable>Methods in org.glassfish.web.ha.session.management with parameters of type Manager Modifier and Type Method Description SessionFullSessionFactory. createSession(Manager mgr)create a new sessionSessionModifiedAttributeSessionFactory. createSession(Manager mgr)create a new sessionSessionModifiedSessionFactory. createSession(Manager mgr)create a new sessionSessionSessionFactory. createSession(Manager mgr)Constructors in org.glassfish.web.ha.session.management with parameters of type Manager Constructor Description BaseHASession(Manager manager)Creates a new instance of BaseHASessionFullHASession(Manager manager)Creates a new instance of FullHASessionModifiedAttributeHASession(Manager manager)Creates a new instance of ModifiedAttributeHASessionModifiedHASession(Manager manager)Creates a new instance of ModifiedHASession
-