Serialized Form


Package org.apache.catalina

Class org.apache.catalina.ContainerEvent implements Serializable

Serialized Fields

container

Container container
The Container on which this event occurred.


data

java.lang.Object data
The event data associated with this event.


type

java.lang.String type
The event type this instance represents.

Class org.apache.catalina.InstanceEvent implements Serializable

Serialized Fields

exception

java.lang.Throwable exception
The exception that was thrown during the processing being reported by this event (AFTER_INIT_EVENT, AFTER_SERVICE_EVENT, AFTER_DESTROY_EVENT, AFTER_DISPATCH_EVENT, and AFTER_FILTER_EVENT only).


filter

javax.servlet.Filter filter
The Filter instance for which this event occurred (BEFORE_FILTER_EVENT and AFTER_FILTER_EVENT only).


request

javax.servlet.ServletRequest request
The servlet request being processed (BEFORE_FILTER_EVENT, AFTER_FILTER_EVENT, BEFORE_SERVICE_EVENT, and AFTER_SERVICE_EVENT).


response

javax.servlet.ServletResponse response
The servlet response being processed (BEFORE_FILTER_EVENT, AFTER_FILTER_EVENT, BEFORE_SERVICE_EVENT, and AFTER_SERVICE_EVENT).


servlet

javax.servlet.Servlet servlet
The Servlet instance for which this event occurred (not present on BEFORE_FILTER_EVENT or AFTER_FILTER_EVENT events).


type

java.lang.String type
The event type this instance represents.


wrapper

Wrapper wrapper
The Wrapper managing the servlet instance for which this event occurred.

Class org.apache.catalina.LifecycleEvent implements Serializable

Serialized Fields

data

java.lang.Object data
The event data associated with this event.


lifecycle

Lifecycle lifecycle
The Lifecycle on which this event occurred.


type

java.lang.String type
The event type this instance represents.

Class org.apache.catalina.LifecycleException implements Serializable

Serialized Fields

message

java.lang.String message
The error message passed to our constructor (if any)


throwable

java.lang.Throwable throwable
The underlying exception or error passed to our constructor (if any)

Class org.apache.catalina.SessionEvent implements Serializable

Serialized Fields

data

java.lang.Object data
The event data associated with this event.


session

Session session
The Session on which this event occurred.


type

java.lang.String type
The event type this instance represents.


Package org.apache.catalina.core

Class org.apache.catalina.core.StandardContext implements Serializable

Serialized Fields

log

org.apache.commons.logging.Log log

altDDName

java.lang.String altDDName
The alternate deployment descriptor name.


applicationListeners

java.lang.String[] applicationListeners
The set of application listener class names configured for this application, in the order they were encountered in the web.xml file.


applicationParameters

ApplicationParameter[] applicationParameters
The set of application parameters defined for this application.


available

boolean available
The application available flag for this Context.


charsetMapperClass

java.lang.String charsetMapperClass
The Java class name of the CharsetMapper class to be created.


configFile

java.lang.String configFile
The path to a file to save this Context information.


configured

boolean configured
The "correctly configured" flag for this Context.


constraints

SecurityConstraint[] constraints
The security constraints for this web application.


cookies

boolean cookies
Should we attempt to use cookies for session id communication?


crossContext

boolean crossContext
Should we allow the ServletContext.getContext() method to access the context of other web applications in this server?


displayName

java.lang.String displayName
The display name of this web application.


distributable

boolean distributable
The distributable flag for this web application.


docBase

java.lang.String docBase
The document root for this web application.


exceptionPages

java.util.HashMap exceptionPages
The exception pages for this web application, keyed by fully qualified class name of the Java exception.


filterConfigs

java.util.HashMap filterConfigs
The set of filter configurations (and associated filter instances) we have initialized, keyed by filter name.


filterDefs

java.util.HashMap filterDefs
The set of filter definitions for this application, keyed by filter name.


filterMaps

FilterMap[] filterMaps
The set of filter mappings for this application, in the order they were defined in the deployment descriptor.


instanceListeners

java.lang.String[] instanceListeners
The set of classnames of InstanceListeners that will be added to each newly created Wrapper by createWrapper().


loginConfig

LoginConfig loginConfig
The login configuration descriptor for this web application.


namingResources

NamingResources namingResources
The naming resources for this web application.


mapperClass

java.lang.String mapperClass
The Java class name of the default Mapper class for this Container.


messageDestinations

java.util.HashMap messageDestinations
The message destinations for this web application.


mimeMappings

java.util.HashMap mimeMappings
The MIME mappings for this web application, keyed by extension.


okErrorPage

ErrorPage okErrorPage
Special case: error page for status 200.


parameters

java.util.HashMap parameters
The context initialization parameters for this web application, keyed by name.


paused

boolean paused
The request processing pause flag (while reloading occurs)


publicId

java.lang.String publicId
The public identifier of the DTD for the web application deployment descriptor version we are currently parsing. This is used to support relaxed validation rules when processing version 2.2 web.xml files.


reloadable

boolean reloadable
The reloadable flag for this web application.


override

boolean override
The DefaultContext override flag for this web application.


privileged

boolean privileged
The privileged flag for this web application.


replaceWelcomeFiles

boolean replaceWelcomeFiles
Should the next call to addWelcomeFile() cause replacement of any existing welcome files? This will be set before processing the web application's deployment descriptor, so that application specified choices replace, rather than append to, those defined in the global descriptor.


roleMappings

java.util.HashMap roleMappings
The security role mappings for this application, keyed by role name (as used within the application).


securityRoles

java.lang.String[] securityRoles
The security roles for this application, keyed by role name.


servletMappings

java.util.HashMap servletMappings
The servlet mappings for this web application, keyed by matching pattern.


sessionTimeout

int sessionTimeout
The session timeout (in minutes) for this web application.


statusPages

java.util.HashMap statusPages
The status code error pages for this web application, keyed by HTTP status code (as an Integer).


swallowOutput

boolean swallowOutput
Set flag to true to cause the system.out and system.err to be redirected to the logger when executing a servlet.


taglibs

java.util.HashMap taglibs
The JSP tag libraries for this web application, keyed by URI


welcomeFiles

java.lang.String[] welcomeFiles
The welcome files for this application.


wrapperLifecycles

java.lang.String[] wrapperLifecycles
The set of classnames of LifecycleListeners that will be added to each newly created Wrapper by createWrapper().


wrapperListeners

java.lang.String[] wrapperListeners
The set of classnames of ContainerListeners that will be added to each newly created Wrapper by createWrapper().


workDir

java.lang.String workDir
The pathname to the work directory for this context (relative to the server's home if not absolute).


wrapperClass

java.lang.String wrapperClass
Java class name of the Wrapper class implementation we use.


useNaming

boolean useNaming
JNDI use flag.


filesystemBased

boolean filesystemBased
Filesystem based flag.


namingContextName

java.lang.String namingContextName
Name of the associated naming context.


cachingAllowed

boolean cachingAllowed
Caching allowed flag.


webappResources

javax.naming.directory.DirContext webappResources
Non proxied resources.


wrappers

java.util.ArrayList wrappers

startupTime

long startupTime

tldScanTime

long tldScanTime


Package org.apache.catalina.deploy

Class org.apache.catalina.deploy.ApplicationParameter implements Serializable

Serialized Fields

description

java.lang.String description
The description of this environment entry.


name

java.lang.String name
The name of this application parameter.


override

boolean override
Does this application parameter allow overrides by the application deployment descriptor?


value

java.lang.String value
The value of this application parameter.

Class org.apache.catalina.deploy.ContextEjb implements Serializable

Serialized Fields

description

java.lang.String description
The description of this EJB.


home

java.lang.String home
The name of the EJB home implementation class.


link

java.lang.String link
The link to a J2EE EJB definition.


name

java.lang.String name
The name of this EJB.


remote

java.lang.String remote
The name of the EJB remote implementation class.


type

java.lang.String type
The name of the EJB bean implementation class.


resources

NamingResources resources
The NamingResources with which we are associated (if any).

Class org.apache.catalina.deploy.ContextEnvironment implements Serializable

Serialized Fields

description

java.lang.String description
The description of this environment entry.


name

java.lang.String name
The name of this environment entry.


override

boolean override
Does this environment entry allow overrides by the application deployment descriptor?


type

java.lang.String type
The type of this environment entry.


value

java.lang.String value
The value of this environment entry.


resources

NamingResources resources
The NamingResources with which we are associated (if any).

Class org.apache.catalina.deploy.ContextLocalEjb implements Serializable

Serialized Fields

description

java.lang.String description
The description of this EJB.


home

java.lang.String home
The name of the EJB home implementation class.


link

java.lang.String link
The link to a J2EE EJB definition.


local

java.lang.String local
The name of the EJB local implementation class.


name

java.lang.String name
The name of this EJB.


type

java.lang.String type
The name of the EJB bean implementation class.


resources

NamingResources resources
The NamingResources with which we are associated (if any).

Class org.apache.catalina.deploy.ContextResource implements Serializable

Serialized Fields

auth

java.lang.String auth
The authorization requirement for this resource (Application or Container).


description

java.lang.String description
The description of this resource.


name

java.lang.String name
The name of this resource.


scope

java.lang.String scope
The sharing scope of this resource factory (Shareable or Unshareable).


type

java.lang.String type
The type of this resource.


resources

NamingResources resources
The NamingResources with which we are associated (if any).

Class org.apache.catalina.deploy.ContextResourceLink implements Serializable

Serialized Fields

name

java.lang.String name
The name of this resource.


type

java.lang.String type
The type of this resource.


global

java.lang.String global
The global name of this resource.


resources

NamingResources resources
The NamingResources with which we are associated (if any).

Class org.apache.catalina.deploy.ErrorPage implements Serializable

Serialized Fields

errorCode

int errorCode
The error (status) code for which this error page is active.


exceptionType

java.lang.String exceptionType
The exception type for which this error page is active.


location

java.lang.String location
The context-relative location to handle this error or exception.

Class org.apache.catalina.deploy.FilterDef implements Serializable

Serialized Fields

description

java.lang.String description
The description of this filter.


displayName

java.lang.String displayName
The display name of this filter.


filterClass

java.lang.String filterClass
The fully qualified name of the Java class that implements this filter.


filterName

java.lang.String filterName
The name of this filter, which must be unique among the filters defined for a particular web application.


largeIcon

java.lang.String largeIcon
The large icon associated with this filter.


parameters

java.util.Map parameters
The set of initialization parameters for this filter, keyed by parameter name.


smallIcon

java.lang.String smallIcon
The small icon associated with this filter.

Class org.apache.catalina.deploy.FilterMap implements Serializable

Serialized Fields

dispatcherMapping

int dispatcherMapping

filterName

java.lang.String filterName

servletName

java.lang.String servletName
The servlet name this mapping matches.


urlPattern

java.lang.String urlPattern
The URL pattern this mapping matches.

Class org.apache.catalina.deploy.LoginConfig implements Serializable

Serialized Fields

authMethod

java.lang.String authMethod
The authentication method to use for application login. Must be BASIC, DIGEST, FORM, or CLIENT-CERT.


errorPage

java.lang.String errorPage
The context-relative URI of the error page for form login.


loginPage

java.lang.String loginPage
The context-relative URI of the login page for form login.


realmName

java.lang.String realmName
The realm name used when challenging the user for authentication credentials.

Class org.apache.catalina.deploy.MessageDestinationRef implements Serializable

Serialized Fields

description

java.lang.String description
The description of this destination ref.


link

java.lang.String link
The link of this destination ref.


name

java.lang.String name
The name of this destination ref.


type

java.lang.String type
The type of this destination ref.


usage

java.lang.String usage
The usage of this destination ref.


resources

NamingResources resources
The NamingResources with which we are associated (if any).

Class org.apache.catalina.deploy.NamingResources implements Serializable

Serialized Fields

container

java.lang.Object container
Associated container object.


entries

java.util.Hashtable entries
List of naming entries, keyed by name. The value is the entry type, as declared by the user.


ejbs

java.util.HashMap ejbs
The EJB resource references for this web application, keyed by name.


envs

java.util.HashMap envs
The environment entries for this web application, keyed by name.


localEjbs

java.util.HashMap localEjbs
The local EJB resource references for this web application, keyed by name.


mdrs

java.util.HashMap mdrs
The message destination referencess for this web application, keyed by name.


resourceEnvRefs

java.util.HashMap resourceEnvRefs
The resource environment references for this web application, keyed by name.


resources

java.util.HashMap resources
The resource references for this web application, keyed by name.


resourceLinks

java.util.HashMap resourceLinks
The resource links for this web application, keyed by name.


resourceParams

java.util.HashMap resourceParams
The resource parameters for this web application, keyed by name.


support

java.beans.PropertyChangeSupport support
The property change support for this component.

Class org.apache.catalina.deploy.ResourceParams implements Serializable

Serialized Fields

name

java.lang.String name
The name of this resource parameters. Must be the name of the resource in the java: namespace.


resourceParams

java.util.Hashtable resourceParams

resources

NamingResources resources
The NamingResources with which we are associated (if any).

Class org.apache.catalina.deploy.SecurityCollection implements Serializable

Serialized Fields

description

java.lang.String description
Description of this web resource collection.


methods

java.lang.String[] methods
The HTTP methods covered by this web resource collection.


name

java.lang.String name
The name of this web resource collection.


patterns

java.lang.String[] patterns
The URL patterns protected by this security collection.

Class org.apache.catalina.deploy.SecurityConstraint implements Serializable

Serialized Fields

allRoles

boolean allRoles
Was the "all roles" wildcard included in the authorization constraints for this security constraint?


authConstraint

boolean authConstraint
Was an authorization constraint included in this security constraint? This is necessary to distinguish the case where an auth-constraint with no roles (signifying no direct access at all) was requested, versus a lack of auth-constraint which implies no access control checking.


authRoles

java.lang.String[] authRoles
The set of roles permitted to access resources protected by this security constraint.


collections

SecurityCollection[] collections
The set of web resource collections protected by this security constraint.


displayName

java.lang.String displayName
The display name of this security constraint.


userConstraint

java.lang.String userConstraint
The user data constraint for this security constraint. Must be NONE, INTEGRAL, or CONFIDENTIAL.


Package org.apache.catalina.connector

Class org.apache.catalina.connector.ClientAbortException implements Serializable

Serialized Fields

message

java.lang.String message
The error message passed to our constructor (if any)


throwable

java.lang.Throwable throwable
The underlying exception or error passed to our constructor (if any)


Package org.apache.catalina.servlets

Class org.apache.catalina.servlets.CGIServlet implements Serializable

Serialized Fields

context

javax.servlet.ServletContext context
the Context container associated with our web application.


debug

int debug
the debugging detail level for this servlet.


iClientInputTimeout

int iClientInputTimeout
the time in ms to wait for the client to send us CGI input data


cgiPathPrefix

java.lang.String cgiPathPrefix
The CGI search path will start at webAppRootDir + File.separator + cgiPathPrefix (or webAppRootDir alone if cgiPathPrefix is null)

Class org.apache.catalina.servlets.DefaultServlet implements Serializable

Serialized Fields

debug

int debug
The debugging detail level for this servlet.


input

int input
The input buffer size to use when serving resources.


listings

boolean listings
Should we generate directory listings when no welcome file is present?


readOnly

boolean readOnly
Read only flag. By default, it's set to true.


output

int output
The output buffer size to use when serving resources.


welcomes

java.lang.String[] welcomes
The set of welcome files for this web application

Class org.apache.catalina.servlets.HTMLManagerServlet implements Serializable

Class org.apache.catalina.servlets.InvokerServlet implements Serializable

Serialized Fields

context

Context context
The Context container associated with our web application.


debug

int debug
The debugging detail level for this servlet.


wrapper

Wrapper wrapper
The Wrapper container associated with this servlet.

Class org.apache.catalina.servlets.ManagerServlet implements Serializable

Serialized Fields

context

Context context
The Context container associated with our web application.


debug

int debug
The debugging detail level for this servlet.


deployed

java.io.File deployed
File object representing the directory into which the deploy() command will store the WAR and context configuration files that have been uploaded.


deployer

Deployer deployer
The Deployer container that contains our own web application's Context, along with the associated Contexts for web applications that we are managing.


global

javax.naming.Context global
The global JNDI NamingContext for this server, if available.


wrapper

Wrapper wrapper
The Wrapper container associated with this servlet.

Class org.apache.catalina.servlets.WebdavServlet implements Serializable

Serialized Fields

resourceLocks

java.util.Hashtable resourceLocks
Repository of the locks put on single resources.

Key : path
Value : LockInfo


lockNullResources

java.util.Hashtable lockNullResources
Repository of the lock-null resources.

Key : path of the collection containing the lock-null resource
Value : Vector of lock-null resource which are members of the collection. Each element of the Vector is the path associated with the lock-null resource.


collectionLocks

java.util.Vector collectionLocks
Vector of the heritable locks.

Key : path
Value : LockInfo


secret

java.lang.String secret
Secret information used to generate reasonably secure lock ids.


Package org.apache.catalina.session

Class org.apache.catalina.session.StandardSession implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream stream)
                 throws java.lang.ClassNotFoundException,
                        java.io.IOException
Read a serialized version of this session object from the specified object input stream.

IMPLEMENTATION NOTE: The reference to the owning Manager is not restored by this method, and must be set explicitly.

Throws:
java.lang.ClassNotFoundException - if an unknown class is specified
java.io.IOException - if an input/output error occurs

writeObject

private void writeObject(java.io.ObjectOutputStream stream)
                  throws java.io.IOException
Write a serialized version of this session object to the specified object output stream.

IMPLEMENTATION NOTE: The owning Manager will not be stored in the serialized representation of this Session. After calling readObject(), you must set the associated Manager explicitly.

IMPLEMENTATION NOTE: Any attribute that is not Serializable will be unbound from the session, with appropriate actions if it implements HttpSessionBindingListener. If you do not want any such attributes, be sure the distributable property of the associated Manager is set to true.

Throws:
java.io.IOException - if an input/output error occurs
Serialized Fields

attributes

java.util.HashMap attributes
The collection of user data attributes associated with this Session.


creationTime

long creationTime
The time this session was created, in milliseconds since midnight, January 1, 1970 GMT.


id

java.lang.String id
The session identifier of this Session.


lastAccessedTime

long lastAccessedTime
The last accessed time for this Session.


manager

Manager manager
The Manager with which this Session is associated.


maxInactiveInterval

int maxInactiveInterval
The maximum time interval, in seconds, between client requests before the servlet container may invalidate this session. A negative time indicates that the session should never time out.


isNew

boolean isNew
Flag indicating whether this session is new or not.


isValid

boolean isValid
Flag indicating whether this session is valid or not.


thisAccessedTime

long thisAccessedTime
The current accessed time for this session.


Package org.apache.catalina.ssi

Class org.apache.catalina.ssi.SSIServlet implements Serializable

Serialized Fields

debug

int debug
Debug level for this servlet.


buffered

boolean buffered
Should the output be buffered.


expires

java.lang.Long expires
Expiration time in seconds for the doc.


isVirtualWebappRelative

boolean isVirtualWebappRelative
virtual path can be webapp-relative

Class org.apache.catalina.ssi.SSIStopProcessingException implements Serializable


Package org.apache.catalina.util

Class org.apache.catalina.util.FastDateFormat implements Serializable

Serialized Fields

df

java.text.DateFormat df

lastSec

long lastSec

sb

java.lang.StringBuffer sb

fp

java.text.FieldPosition fp

Class org.apache.catalina.util.ParameterMap implements Serializable

Serialized Fields

locked

boolean locked
The current lock state of this parameter map.

Class org.apache.catalina.util.ResourceSet implements Serializable

Serialized Fields

locked

boolean locked
The current lock state of this parameter map.

Class org.apache.catalina.util.URL implements Serializable

Serialized Fields

authority

java.lang.String authority
The authority part of the URL.


file

java.lang.String file
The filename part of the URL.


host

java.lang.String host
The host name part of the URL.


path

java.lang.String path
The path part of the URL.


port

int port
The port number part of the URL.


protocol

java.lang.String protocol
The protocol name part of the URL.


query

java.lang.String query
The query part of the URL.


ref

java.lang.String ref
The reference part of the URL.


userInfo

java.lang.String userInfo
The user info part of the URL.


Package org.apache.naming

Class org.apache.naming.EjbRef implements Serializable

Class org.apache.naming.JndiPermission implements Serializable

Class org.apache.naming.ResourceEnvRef implements Serializable

Class org.apache.naming.ResourceLinkRef implements Serializable

Class org.apache.naming.ResourceRef implements Serializable

Class org.apache.naming.TransactionRef implements Serializable


Package org.apache.naming.resources

Class org.apache.naming.resources.FileDirContext.FileResourceAttributes implements Serializable

Serialized Fields

file

java.io.File file

accessed

boolean accessed

Class org.apache.naming.resources.ImmutableNameNotFoundException implements Serializable

Class org.apache.naming.resources.ResourceAttributes implements Serializable

Serialized Fields

collection

boolean collection
Collection flag.


contentLength

long contentLength
Content length.


creation

long creation
Creation time.


creationDate

java.util.Date creationDate
Creation date.


lastModified

long lastModified
Last modified time.


lastModifiedDate

java.util.Date lastModifiedDate
Last modified date.


name

java.lang.String name
Name.


weakETag

java.lang.String weakETag
Weak ETag.


strongETag

java.lang.String strongETag
Strong ETag.


attributes

javax.naming.directory.Attributes attributes
External attributes.



Copyright © 2000-2002 Apache Software Foundation. All Rights Reserved.