All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class org.w3c.jigsaw.servlet.ServletProps

java.lang.Object
   |
   +----org.w3c.tools.resources.AttributeHolder
           |
           +----org.w3c.tools.resources.Resource
                   |
                   +----org.w3c.jigsaw.config.PropertySet
                           |
                           +----org.w3c.jigsaw.servlet.ServletProps

public class ServletProps
extends PropertySet

Variable Index

 o ATTR_MAX_IDLE_TIME
Attribute index - The index for our servlet session max idle time.
 o ATTR_SERVLET_LOG_FILE
Attribute index - The index for our servlet log file attribute.
 o ATTR_SESSIONS_COOKIE_COMMENT
Attribute index - The index for our session cookie comment.
 o ATTR_SESSIONS_COOKIE_DOMAIN
Attribute index - The index for our session cookie domain.
 o ATTR_SESSIONS_COOKIE_MAXAGE
Attribute index - The index for our session cookie maxage.
 o ATTR_SESSIONS_COOKIE_NAME
Attribute index - The index for our session cookie name.
 o ATTR_SESSIONS_COOKIE_PATH
Attribute index - The index for our session cookie path.
 o ATTR_SESSIONS_COOKIE_SECURE
Attribute index - The index for our session cookie secure.
 o ATTR_SESSIONS_MAX
Attribute index - The index for our servlet session max number in memory.
 o ATTR_SESSIONS_SWEEP
Attribute index - The index for our servlet session sweep delay.
 o DEFAULT_COOKIE_NAME
The default Session Cookie name.
 o SERVLET_COOKIE_COMMENT
Name of the property indicating the session cookie comment.
 o SERVLET_COOKIE_DOMAIN
Name of the property indicating the session cookie domain.
 o SERVLET_COOKIE_MAXAGE
Name of the property indicating the session cookie maxage.
 o SERVLET_COOKIE_NAME
Name of the property indicating the session cookie name.
 o SERVLET_COOKIE_PATH
Name of the property indicating the session cookie path.
 o SERVLET_COOKIE_SECURE
Name of the property indicating the session cookie secure flag.
 o SERVLET_LOG_FILE_P
Name of the property indicating the servlet log file.
 o SERVLET_MAX_SESSION
Name of the property indicating the max number of session loaded in memory.
 o SERVLET_PROPS_NAME
Name of the servlet PropertySet.
 o SERVLET_SESSION_IDLE
Name of the property indicating the max idle time of session.
 o SERVLET_SESSION_SWEEP
Name of the property indicating the max idle time of session.

Method Index

 o getMaxSessionsNumber()
Returns the max number of session in memory.
 o getSessionContext()
Returns the session context.
 o getSessionsMaxIdleTime()
Returns the max idle time for a session.
 o getSessionsSweepDelay()
Returns the delay between two sessions idle time check.
 o getTitle()
Get this property set title.

Variables

 o SERVLET_LOG_FILE_P
 protected static String SERVLET_LOG_FILE_P
Name of the property indicating the servlet log file. This property indicates the name of the servlet log file to use.

This property defaults to the servlets file in the server log directory.

 o SERVLET_MAX_SESSION
 protected static String SERVLET_MAX_SESSION
Name of the property indicating the max number of session loaded in memory.

 o SERVLET_SESSION_IDLE
 protected static String SERVLET_SESSION_IDLE
Name of the property indicating the max idle time of session.

 o SERVLET_SESSION_SWEEP
 protected static String SERVLET_SESSION_SWEEP
Name of the property indicating the max idle time of session.

 o SERVLET_COOKIE_NAME
 protected static String SERVLET_COOKIE_NAME
Name of the property indicating the session cookie name.

 o DEFAULT_COOKIE_NAME
 protected static String DEFAULT_COOKIE_NAME
The default Session Cookie name.

 o SERVLET_COOKIE_DOMAIN
 protected static String SERVLET_COOKIE_DOMAIN
Name of the property indicating the session cookie domain.

 o SERVLET_COOKIE_MAXAGE
 protected static String SERVLET_COOKIE_MAXAGE
Name of the property indicating the session cookie maxage.

 o SERVLET_COOKIE_PATH
 protected static String SERVLET_COOKIE_PATH
Name of the property indicating the session cookie path.

 o SERVLET_COOKIE_COMMENT
 protected static String SERVLET_COOKIE_COMMENT
Name of the property indicating the session cookie comment.

 o SERVLET_COOKIE_SECURE
 protected static String SERVLET_COOKIE_SECURE
Name of the property indicating the session cookie secure flag.

 o SERVLET_PROPS_NAME
 protected static String SERVLET_PROPS_NAME
Name of the servlet PropertySet.

 o ATTR_SERVLET_LOG_FILE
 protected static int ATTR_SERVLET_LOG_FILE
Attribute index - The index for our servlet log file attribute.

 o ATTR_MAX_IDLE_TIME
 protected static int ATTR_MAX_IDLE_TIME
Attribute index - The index for our servlet session max idle time.

 o ATTR_SESSIONS_MAX
 protected static int ATTR_SESSIONS_MAX
Attribute index - The index for our servlet session max number in memory.

 o ATTR_SESSIONS_SWEEP
 protected static int ATTR_SESSIONS_SWEEP
Attribute index - The index for our servlet session sweep delay.

 o ATTR_SESSIONS_COOKIE_NAME
 protected static int ATTR_SESSIONS_COOKIE_NAME
Attribute index - The index for our session cookie name.

 o ATTR_SESSIONS_COOKIE_PATH
 protected static int ATTR_SESSIONS_COOKIE_PATH
Attribute index - The index for our session cookie path.

 o ATTR_SESSIONS_COOKIE_DOMAIN
 protected static int ATTR_SESSIONS_COOKIE_DOMAIN
Attribute index - The index for our session cookie domain.

 o ATTR_SESSIONS_COOKIE_COMMENT
 protected static int ATTR_SESSIONS_COOKIE_COMMENT
Attribute index - The index for our session cookie comment.

 o ATTR_SESSIONS_COOKIE_MAXAGE
 protected static int ATTR_SESSIONS_COOKIE_MAXAGE
Attribute index - The index for our session cookie maxage.

 o ATTR_SESSIONS_COOKIE_SECURE
 protected static int ATTR_SESSIONS_COOKIE_SECURE
Attribute index - The index for our session cookie secure.

Methods

 o getSessionsMaxIdleTime
 public long getSessionsMaxIdleTime()
Returns the max idle time for a session.

Returns:
The max idle time in milli seconds.
 o getMaxSessionsNumber
 public int getMaxSessionsNumber()
Returns the max number of session in memory.

Returns:
The max number of session.
 o getSessionsSweepDelay
 public int getSessionsSweepDelay()
Returns the delay between two sessions idle time check.

Returns:
the delay between two sessions idle time check in milli seconds.
 o getSessionContext
 public JigsawHttpSessionContext getSessionContext()
Returns the session context.

Returns:
A JigsawHttpSessionContext instance.
 o getTitle
 public String getTitle()
Get this property set title.

Returns:
A String encoded title.
Overrides:
getTitle in class PropertySet

All Packages  Class Hierarchy  This Package  Previous  Next  Index