org.apache.catalina.deploy |
This package contains Java objects that represent complex data structures
from the web application deployment descriptor file (web.xml ).
It is assumed that these objects will be initialized within the context of
a single thread, and then referenced in a read-only manner subsequent to that
time. Therefore, no multi-thread synchronization is utilized within the
implementation classes.
|
Java Source File Name | Type | Comment |
ApplicationParameter.java | Class | Representation of a context initialization parameter that is configured
in the server configuration file, rather than the application deployment
descriptor. |
ContextEjb.java | Class | Representation of an EJB resource reference for a web application, as
represented in a <ejb-ref> element in the
deployment descriptor.
author: Craig R. |
ContextEnvironment.java | Class | Representation of an application environment entry, as represented in
an <env-entry> element in the deployment descriptor.
author: Craig R. |
ContextLocalEjb.java | Class | Representation of a local EJB resource reference for a web application, as
represented in a <ejb-local-ref> element in the
deployment descriptor.
author: Craig R. |
ContextResource.java | Class | Representation of a resource reference for a web application, as
represented in a <resource-ref> element in the
deployment descriptor.
author: Craig R. |
ContextResourceLink.java | Class | Representation of a resource link for a web application, as
represented in a <ResourceLink> element in the
server configuration file. |
ErrorPage.java | Class | Representation of an error page element for a web application,
as represented in a <error-page> element in the
deployment descriptor.
author: Craig R. |
FilterDef.java | Class | Representation of a filter definition for a web application, as represented
in a <filter> element in the deployment descriptor.
author: Craig R. |
FilterMap.java | Class | Representation of a filter mapping for a web application, as represented
in a <filter-mapping> element in the deployment
descriptor. |
LoginConfig.java | Class | Representation of a login configuration element for a web application,
as represented in a <login-config> element in the
deployment descriptor.
author: Craig R. |
MessageDestination.java | Class | Representation of a message destination for a web application, as
represented in a <message-destination> element
in the deployment descriptor.
author: Craig R. |
MessageDestinationRef.java | Class | Representation of a message destination reference for a web application,
as represented in a <message-destination-ref> element
in the deployment descriptor.
author: Craig R. |
NamingResources.java | Class | Holds and manages the naming resources defined in the J2EE Enterprise
Naming Context and their associated JNDI context. |
ResourceParams.java | Class | Representation of additional parameters which will be used to initialize
external resources defined in the web application deployment descriptor. |
SecurityCollection.java | Class | Representation of a web resource collection for a web application's security
constraint, as represented in a <web-resource-collection>
element in the deployment descriptor.
WARNING: It is assumed that instances of this class will be created
and modified only within the context of a single thread, before the instance
is made visible to the remainder of the application. |
SecurityConstraint.java | Class | Representation of a security constraint element for a web application,
as represented in a <security-constraint> element in the
deployment descriptor.
WARNING: It is assumed that instances of this class will be created
and modified only within the context of a single thread, before the instance
is made visible to the remainder of the application. |
Test.java | Class | |