public interface Container extends Lifecycle
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.
Lifecycle.SingleUse
Modifier and Type | Field and Description |
---|---|
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_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_VALVE_EVENT
The ContainerEvent event type sent when a valve is removed
by
removeValve() , if this Container supports pipelines. |
AFTER_DESTROY_EVENT, AFTER_INIT_EVENT, AFTER_START_EVENT, AFTER_STOP_EVENT, BEFORE_DESTROY_EVENT, BEFORE_INIT_EVENT, BEFORE_START_EVENT, BEFORE_STOP_EVENT, CONFIGURE_START_EVENT, CONFIGURE_STOP_EVENT, PERIODIC_EVENT, START_EVENT, STOP_EVENT
Modifier and Type | Method and Description |
---|---|
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)
Obtain a child Container by name.
|
Container[] |
findChildren()
Obtain the child Containers associated with this Container.
|
ContainerListener[] |
findContainerListeners()
Obtain the container listeners associated with this Container.
|
void |
fireContainerEvent(java.lang.String type,
java.lang.Object data)
Notify all container event listeners that a particular event has
occurred for this Container.
|
AccessLog |
getAccessLog()
Obtain the AccessLog to use to log a request/response that is destined
for this container.
|
int |
getBackgroundProcessorDelay()
Get the delay between the invocation of the backgroundProcess method on
this container and its children.
|
java.io.File |
getCatalinaBase()
Obtain the location of CATALINA_BASE.
|
java.io.File |
getCatalinaHome()
Obtain the location of CATALINA_HOME.
|
Cluster |
getCluster()
Get the Cluster for this container.
|
java.lang.String |
getDomain()
Obtain the JMX domain under which this container will be / has been
registered.
|
Log |
getLogger()
Obtain the log to which events for this container should be logged.
|
java.lang.String |
getLogName()
Return the logger name that the container will use.
|
java.lang.String |
getMBeanKeyProperties()
Calculate the key properties string to be added to an object's
ObjectName to indicate that it is associated with this container. |
java.lang.String |
getName()
Return a name string (suitable for use by humans) that describes this
Container.
|
javax.management.ObjectName |
getObjectName()
Obtain the JMX name for this container.
|
Container |
getParent()
Get the parent container.
|
java.lang.ClassLoader |
getParentClassLoader()
Get the parent class loader.
|
Pipeline |
getPipeline()
Return the Pipeline object that manages the Valves associated with
this Container.
|
Realm |
getRealm()
Obtain the Realm with which this Container is associated.
|
int |
getStartStopThreads()
Obtain the number of threads available for starting and stopping any
children associated with this 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 |
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 for this component.
|
void |
setRealm(Realm realm)
Set the Realm with which this Container is associated.
|
void |
setStartStopThreads(int startStopThreads)
Sets the number of threads available for starting and stopping any
children associated with this container.
|
addLifecycleListener, destroy, findLifecycleListeners, getState, getStateName, init, removeLifecycleListener, start, stop
static final java.lang.String ADD_CHILD_EVENT
addChild()
.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_VALVE_EVENT
removeValve()
, if this Container supports pipelines.Log getLogger()
null
.java.lang.String getLogName()
javax.management.ObjectName getObjectName()
java.lang.String getDomain()
java.lang.String getMBeanKeyProperties()
ObjectName
to indicate that it is associated with this container.Pipeline getPipeline()
Cluster getCluster()
null
.void setCluster(Cluster cluster)
cluster
- the Cluster with which this Container is associated.int getBackgroundProcessorDelay()
backgroundProcess()
method on this container and all
children with non-positive delay values.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 containerjava.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 childjava.lang.IllegalArgumentException
- if this Container refuses to become
attached to the specified Containerjava.lang.ClassLoader getParentClassLoader()
getParent()
.getParentClassLoader()
. If no
parent has been set, return the system class loader.void setParentClassLoader(java.lang.ClassLoader parent)
Context
s
this call is meaningful only before a Loader has
been configured, and the specified value (if non-null) should be
passed as an argument to the class loader constructor.parent
- The new parent class loaderRealm getRealm()
null
.void setRealm(Realm realm)
realm
- The newly associated Realmvoid 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 addedchild
- New child Container to be addedjava.lang.IllegalArgumentException
- if this exception is thrown by
the setParent()
method of the child Containerjava.lang.IllegalArgumentException
- if the new child does not have
a name unique from that of existing children of this Containerjava.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)
name
- Name of the child Container to be retrievednull
if
no such child exists.Container[] findChildren()
ContainerListener[] findContainerListeners()
void 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 fireContainerEvent(java.lang.String type, java.lang.Object data)
type
- Event typedata
- Event datavoid 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()
int getStartStopThreads()
void setStartStopThreads(int startStopThreads)
startStopThreads
- The new number of threads to be usedjava.io.File getCatalinaBase()
java.io.File getCatalinaHome()
Copyright © 2000-2018 Apache Software Foundation. All Rights Reserved.