|
Apache Tomcat 6.0.53 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface Container
A Container is an object that can execute requests received from a client, and return responses based on those requests. A Container may optionally support a pipeline of Valves that process the request in an order configured at runtime, by implementing the Pipeline interface as well.
Containers will exist at several conceptual levels within Catalina. The following examples represent common cases:
A Container may also be associated with a number of support components that provide functionality which might be shared (by attaching it to a parent Container) or individually customized. The following support components are currently recognized:
log()
method
signatures of the ServletContext
interface.
Field Summary | |
---|---|
static java.lang.String |
ADD_CHILD_EVENT
The ContainerEvent event type sent when a child container is added by addChild() . |
static java.lang.String |
ADD_MAPPER_EVENT
The ContainerEvent event type sent when a Mapper is added by addMapper() . |
static java.lang.String |
ADD_VALVE_EVENT
The ContainerEvent event type sent when a valve is added by addValve() , if this Container supports pipelines. |
static java.lang.String |
REMOVE_CHILD_EVENT
The ContainerEvent event type sent when a child container is removed by removeChild() . |
static java.lang.String |
REMOVE_MAPPER_EVENT
The ContainerEvent event type sent when a Mapper is removed by removeMapper() . |
static java.lang.String |
REMOVE_VALVE_EVENT
The ContainerEvent event type sent when a valve is removed by removeValve() , if this Container supports pipelines. |
Method Summary | |
---|---|
void |
addChild(Container child)
Add a new child Container to those associated with this Container, if supported. |
void |
addContainerListener(ContainerListener listener)
Add a container event listener to this component. |
void |
addPropertyChangeListener(java.beans.PropertyChangeListener listener)
Add a property change listener to this component. |
void |
backgroundProcess()
Execute a periodic task, such as reloading, etc. |
Container |
findChild(java.lang.String name)
Return the child Container, associated with this Container, with the specified name (if any); otherwise, return null |
Container[] |
findChildren()
Return the set of children Containers associated with this Container. |
ContainerListener[] |
findContainerListeners()
Return the set of container listeners associated with this Container. |
AccessLog |
getAccessLog()
Identify the AccessLog to use to log a request/response that was destined for this container but was handled earlier in the processing chain so that the request/response still appears in the correct access logs. |
int |
getBackgroundProcessorDelay()
Get the delay between the invocation of the backgroundProcess method on this container and its children. |
Cluster |
getCluster()
Return the Cluster with which this Container is associated. |
java.lang.String |
getInfo()
Return descriptive information about this Container implementation and the corresponding version number, in the format <description>/<version> . |
Loader |
getLoader()
Return the Loader with which this Container is associated. |
Log |
getLogger()
Return the Logger with which this Container is associated. |
Manager |
getManager()
Return the Manager with which this Container is associated. |
java.lang.Object |
getMappingObject()
Return an object which may be utilized for mapping to this component. |
java.lang.String |
getName()
Return a name string (suitable for use by humans) that describes this Container. |
java.lang.String |
getObjectName()
Return the JMX name associated with this container. |
Container |
getParent()
Return the Container for which this Container is a child, if there is one. |
java.lang.ClassLoader |
getParentClassLoader()
Return the parent class loader (if any) for web applications. |
Pipeline |
getPipeline()
Return the Pipeline object that manages the Valves associated with this Container. |
Realm |
getRealm()
Return the Realm with which this Container is associated. |
javax.naming.directory.DirContext |
getResources()
Return the Resources with which this Container is associated. |
void |
invoke(Request request,
Response response)
Process the specified Request, and generate the corresponding Response, according to the design of this particular Container. |
void |
logAccess(Request request,
Response response,
long time,
boolean useDefault)
Log a request/response that was destined for this container but has been handled earlier in the processing chain so that the request/response still appears in the correct access logs. |
void |
removeChild(Container child)
Remove an existing child Container from association with this parent Container. |
void |
removeContainerListener(ContainerListener listener)
Remove a container event listener from this component. |
void |
removePropertyChangeListener(java.beans.PropertyChangeListener listener)
Remove a property change listener from this component. |
void |
setBackgroundProcessorDelay(int delay)
Set the delay between the invocation of the execute method on this container and its children. |
void |
setCluster(Cluster cluster)
Set the Cluster with which this Container is associated. |
void |
setLoader(Loader loader)
Set the Loader with which this Container is associated. |
void |
setManager(Manager manager)
Set the Manager with which this Container is associated. |
void |
setName(java.lang.String name)
Set a name string (suitable for use by humans) that describes this Container. |
void |
setParent(Container container)
Set the parent Container to which this Container is being added as a child. |
void |
setParentClassLoader(java.lang.ClassLoader parent)
Set the parent class loader (if any) for web applications. |
void |
setRealm(Realm realm)
Set the Realm with which this Container is associated. |
void |
setResources(javax.naming.directory.DirContext resources)
Set the Resources object with which this Container is associated. |
Field Detail |
---|
static final java.lang.String ADD_CHILD_EVENT
addChild()
.
static final java.lang.String ADD_MAPPER_EVENT
addMapper()
.
static final java.lang.String ADD_VALVE_EVENT
addValve()
, if this Container supports pipelines.
static final java.lang.String REMOVE_CHILD_EVENT
removeChild()
.
static final java.lang.String REMOVE_MAPPER_EVENT
removeMapper()
.
static final java.lang.String REMOVE_VALVE_EVENT
removeValve()
, if this Container supports pipelines.
Method Detail |
---|
java.lang.String getInfo()
<description>/<version>
.
Loader getLoader()
null
.
void setLoader(Loader loader)
loader
- The newly associated loaderLog getLogger()
null
.
Manager getManager()
null
.
void setManager(Manager manager)
manager
- The newly associated Managerjava.lang.Object getMappingObject()
java.lang.String getObjectName()
Pipeline getPipeline()
Cluster getCluster()
null
.
void setCluster(Cluster cluster)
cluster
- the Cluster with which this Container is associated.int getBackgroundProcessorDelay()
void setBackgroundProcessorDelay(int delay)
delay
- The delay in seconds between the invocation of
backgroundProcess methodsjava.lang.String getName()
void setName(java.lang.String name)
name
- New name of this container
java.lang.IllegalStateException
- if this Container has already been
added to the children of a parent Container (after which the name
may not be changed)Container getParent()
null
.
void setParent(Container container)
container
- Container to which this Container is being added
as a child
java.lang.IllegalArgumentException
- if this Container refuses to become
attached to the specified Containerjava.lang.ClassLoader getParentClassLoader()
void setParentClassLoader(java.lang.ClassLoader parent)
parent
- The new parent class loaderRealm getRealm()
null
.
void setRealm(Realm realm)
realm
- The newly associated Realmjavax.naming.directory.DirContext getResources()
null
.
void setResources(javax.naming.directory.DirContext resources)
resources
- The newly associated Resourcesvoid backgroundProcess()
void addChild(Container child)
setParent()
method must be called, with this
Container as an argument. This method may thrown an
IllegalArgumentException
if this Container chooses not
to be attached to the specified Container, in which case it is not added
child
- New child Container to be added
java.lang.IllegalArgumentException
- if this exception is thrown by
the setParent()
method of the child Container
java.lang.IllegalArgumentException
- if the new child does not have
a name unique from that of existing children of this Container
java.lang.IllegalStateException
- if this Container does not support
child Containersvoid addContainerListener(ContainerListener listener)
listener
- The listener to addvoid addPropertyChangeListener(java.beans.PropertyChangeListener listener)
listener
- The listener to addContainer findChild(java.lang.String name)
null
name
- Name of the child Container to be retrievedContainer[] findChildren()
ContainerListener[] findContainerListeners()
void invoke(Request request, Response response) throws java.io.IOException, javax.servlet.ServletException
request
- Request to be processedresponse
- Response to be produced
java.io.IOException
- if an input/output error occurred while
processing
javax.servlet.ServletException
- if a ServletException was thrown
while processing this requestvoid removeChild(Container child)
child
- Existing child Container to be removedvoid removeContainerListener(ContainerListener listener)
listener
- The listener to removevoid removePropertyChangeListener(java.beans.PropertyChangeListener listener)
listener
- The listener to removevoid logAccess(Request request, Response response, long time, boolean useDefault)
request
- Request (associated with the response) to logresponse
- Response (associated with the request) to logtime
- Time taken to process the request/response in
milliseconds (use 0 if not known)useDefault
- Flag that indicates that the request/response should
be logged in the engine's default access logAccessLog getAccessLog()
|
Apache Tomcat 6.0.53 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |