Serialized Form
Package com.lutris.appserver.server |
Class com.lutris.appserver.server.ApplicationException extends com.lutris.util.ChainedException implements Serializable |
Package com.lutris.appserver.server.httpPresentation |
Class com.lutris.appserver.server.httpPresentation.ClientPageRedirectException extends com.lutris.appserver.server.httpPresentation.PageRedirectException implements Serializable |
Class com.lutris.appserver.server.httpPresentation.DirectoryException extends com.lutris.appserver.server.httpPresentation.HttpPresentationException implements Serializable |
Class com.lutris.appserver.server.httpPresentation.FilePresentationException extends com.lutris.util.ChainedException implements Serializable |
Class com.lutris.appserver.server.httpPresentation.HttpPresentationException extends com.lutris.util.ChainedException implements Serializable |
Class com.lutris.appserver.server.httpPresentation.HttpPresentationIOException extends java.io.IOException implements Serializable |
trueIOException
boolean trueIOException
Class com.lutris.appserver.server.httpPresentation.PageRedirectException extends java.lang.Error implements Serializable |
url
java.lang.String url
urlHasArgs
boolean urlHasArgs
encoding
java.lang.String encoding
Class com.lutris.appserver.server.httpPresentation.PageUnauthorizedException extends java.lang.RuntimeException implements Serializable |
relm
java.lang.String relm
htmlTitle
java.lang.String htmlTitle
htmlText
java.lang.String htmlText
Class com.lutris.appserver.server.httpPresentation.ServerPageRedirectException extends com.lutris.appserver.server.httpPresentation.PageRedirectException implements Serializable |
httpServletRequest
javax.servlet.http.HttpServletRequest httpServletRequest
httpServletResponse
javax.servlet.http.HttpServletResponse httpServletResponse
Package com.lutris.appserver.server.httpPresentation.servlet |
context
javax.servlet.ServletContext context
- Servlet is started under this context
logChannel
com.lutris.logging.LogChannel logChannel
standardLogger
com.lutris.logging.Logger standardLogger
needToConfigureLogChannel
boolean needToConfigureLogChannel
characterEncoding
java.lang.String characterEncoding
needToSetCharacterEncoding
boolean needToSetCharacterEncoding
application
com.lutris.appserver.server.Application application
appConfig
com.lutris.util.Config appConfig
presentationPrefix
java.lang.String presentationPrefix
logClassName
java.lang.String logClassName
cacheClasses
boolean cacheClasses
cacheFiles
boolean cacheFiles
autoReload
boolean autoReload
presentationManager
HttpPresentationManager presentationManager
domStatsLogWriter
java.io.PrintWriter domStatsLogWriter
- If not null, log DOM statistics here after each DOM write.
axisServlet
org.apache.axis.transport.http.AxisServlet axisServlet
servicesPattern
java.util.regex.Pattern servicesPattern
appClassLoader
com.lutris.classloader.MultiClassLoader appClassLoader
Package com.lutris.appserver.server.session |
Class com.lutris.appserver.server.session.SessionException extends com.lutris.util.ChainedException implements Serializable |
Package com.lutris.appserver.server.sessionContainerAdapter |
user
com.lutris.appserver.server.user.User user
- user object
sessionData
SerializableSessionData sessionData
- Session dat, must be serializable since the servlet container really manages
the sessions, and Tomcat's standard manager implementation needs serializable objects
SESSION
java.lang.String SESSION
- Name of the session object in the HttpSession
encodeUrlState
java.lang.String encodeUrlState
- The url encoding state. Either
Never
Always
Auto
.
SESSION
java.lang.String SESSION
- Name of the session object in the HttpSession
maxSessionIdleTime
int maxSessionIdleTime
- Maximum session idle time, in seconds. A value less-than or equal to zero
disables idle checking.
- See Also:
#getMaxSessionIdleTime
encodeFirstUrl
boolean encodeFirstUrl
- Url encoding for first page state (force it or not)
objectName
javax.management.ObjectName objectName
- object name of the MBean which represents the Tomcat's session manager
saveOnRestart
boolean saveOnRestart
maxSessions
int maxSessions
initialized
boolean initialized
application
com.lutris.appserver.server.Application application
manager
java.lang.Object manager
createSession
java.lang.reflect.Method createSession
expireSession
java.lang.reflect.Method expireSession
findSession
java.lang.reflect.Method findSession
findSessions
java.lang.reflect.Method findSessions
getActiveSessions
java.lang.reflect.Method getActiveSessions
getMaxActive
java.lang.reflect.Method getMaxActive
getExpiredSessions
java.lang.reflect.Method getExpiredSessions
application
com.lutris.appserver.server.Application application
saveOnRestart
boolean saveOnRestart
maxSessions
int maxSessions
initialized
boolean initialized
Package com.lutris.appserver.server.sessionEnhydra |
user
com.lutris.appserver.server.user.User user
sessionKey
java.lang.String sessionKey
timeCreated
long timeCreated
timeLastUsed
long timeLastUsed
timeExpires
long timeExpires
maxIdleTime
long maxIdleTime
maxNoUserIdleTime
long maxNoUserIdleTime
data
SessionData data
- The application specific data for this session.
refCount
int refCount
attributes
java.util.Hashtable<K,V> attributes
valid
boolean valid
Class com.lutris.appserver.server.sessionEnhydra.CreateSessionException extends com.lutris.appserver.server.session.SessionException implements Serializable |
Class com.lutris.appserver.server.sessionEnhydra.DuplicateKeyException extends com.lutris.appserver.server.sessionEnhydra.CreateSessionException implements Serializable |
Package com.lutris.appserver.server.sessionEnhydra.persistent |
Package com.lutris.appserver.server.user |
name
java.lang.String name
value
java.lang.String value
- The contained string.
name
java.lang.String name
value
java.lang.String value
comment
java.lang.String comment
domain
java.lang.String domain
maxAge
int maxAge
path
java.lang.String path
secure
boolean secure
version
int version
Class com.lutris.mime.MimeException extends java.lang.Exception implements Serializable |
reason
int reason
Class com.lutris.util.ChainedError extends java.lang.Error implements Serializable |
cause
java.lang.Throwable cause
Class com.lutris.util.ChainedException extends java.lang.Exception implements Serializable |
cause
java.lang.Throwable cause
Class com.lutris.util.ChainedRuntimeException extends java.lang.RuntimeException implements Serializable |
cause
java.lang.Throwable cause
Class com.lutris.util.Config extends com.lutris.util.KeywordValueTable implements Serializable |
configFile
org.enhydra.util.ConfigFileInterface configFile
Class com.lutris.util.ConfigException extends com.lutris.util.KeywordValueException implements Serializable |
reason
int reason
Class com.lutris.util.FatalExceptionError extends java.lang.Error implements Serializable |
except
java.lang.Exception except
Class com.lutris.util.KeywordValueException extends java.lang.Exception implements Serializable |
Class com.lutris.util.KeywordValueTable extends java.lang.Object implements Serializable |
hashTable
java.util.Hashtable<K,V> hashTable
Class com.lutris.util.ParseException extends java.lang.Exception implements Serializable |
specialConstructor
boolean specialConstructor
currentToken
com.lutris.util.Token currentToken
expectedTokenSequences
int[][] expectedTokenSequences
tokenImage
java.lang.String[] tokenImage
eol
java.lang.String eol
Class com.lutris.util.PersistentStoreException extends com.lutris.util.ChainedException implements Serializable |
Class com.lutris.util.TokenMgrError extends java.lang.Error implements Serializable |
errorCode
int errorCode
Package org.enhydra.logging |
_options
java.lang.String _options
lf
org.objectweb.util.monolog.api.LoggerFactory lf
logger
org.objectweb.util.monolog.api.Logger logger
Package org.enhydra.server |
Class org.enhydra.server.EnhydraServerException extends java.lang.Exception implements Serializable |
Package org.enhydra.servlet.servlets |
defaultPage
java.lang.String defaultPage
- Default html page.
logChannel
com.lutris.logging.LogChannel logChannel
- The logging channel.
standardLogger
StandardLogger standardLogger
needToConfigureLogChannel
boolean needToConfigureLogChannel
myContext
javax.servlet.ServletContext myContext
- The Sevelet context.
docRoot
org.enhydra.servlet.servlets.Path docRoot
- The document root for the file server and is
specified in servlet context.
numServed
long numServed
- Number of file served by this servlet.
mimetypes
MimeType mimetypes
- Class for determing the mime type of a file
cgiType
java.lang.String cgiType
- Mime type extension for executing a cgi script in thr Doc Root.
logChannel
com.lutris.logging.LogChannel logChannel
- The logging channel.
standardLogger
StandardLogger standardLogger
needToConfigureLogChannel
boolean needToConfigureLogChannel
myContext
javax.servlet.ServletContext myContext
- The Servlet context.
jarFileName
java.lang.String jarFileName
- The jar file for the file server. It is
specified in the servlet initArgs.
jarFile
java.util.zip.ZipFile jarFile
defaultInner
java.lang.String defaultInner
- The default inner file for the file server. It is
specified in the servlet initArgs.
numServed
long numServed
- Number of files served by this servlet.
mimetypes
MimeType mimetypes
- Class for determining the mime type of a file
docRoot
org.enhydra.servlet.servlets.Path docRoot
- The document root for the jar server
specified in servlet context.