Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.lutris.appserver.server.session.persistent: Javadoc index of package com.lutris.appserver.server.session.persistent.


Package Samples:

com.lutris.appserver.server.session.persistent

Classes:

PersistentSessionHome: PersistentSessionHome writes all passive sessions to a database. The sessions are written by serializing all the data (excluding the session manager) that is associated with a session. This requires that the session data and user associated with a session are serializable. PersistentSessionHome should be used by applications that want failover support or that want to run in a clustered environment. The session data is written to a table in the database that is defined as (Informix): CREATE TABLE PersistentSession ( sessionKey VARCHAR(64) NOT NULL, isNew CHAR(1) DEFAULT "1" NOT NULL, timeCreated ...
PersistentSessionData: Session data used to store dynamic application objects. All objects stored in this object must be serializable.
PersistentSessionUserTable: Table used by StandardSessionManager to cross reference User objects and sessions.
PersistentSession: A serializable version of BasicSession that can be written to persistent store.
SessionDeleteDO: Database interface that is used to delete a session from the database.
KeyExistsQuery: Performs a query to determine if a session key exists.
SizeQuery: Queries the total number of sessions in the database.
DBUtil: Utilitity class for performint database operations.
KeysQuery: Returns an enumeration of all the session keys.
UserSessionsQuery: Queries the sessions associated with a user.
UserNumSessionsQuery: Queries the session associated with a user.
PersistentSessionDO: Database interface for persistent session.
SessionQuery: Queries a session from the database.
UnusedQuery: Returns an unused session.
LoaderObjectInputStream

Home | Contact Us | Privacy Policy | Terms of Service