| org.apache.catalina.Contained
All known Subclasses: org.apache.catalina.valves.ValveBase, org.apache.catalina.core.StandardPipeline,
Contained | public interface Contained (Code) | | Decoupling interface which specifies that an implementing class is
associated with at most one Container instance.
author: Craig R. McClanahan author: Peter Donald version: $Revision: 1.2 $ $Date: 2004/02/27 14:58:38 $ |
Method Summary | |
public Container | getContainer() Return the Container with which this instance is associated
(if any); otherwise return null . | public void | setContainer(Container container) Set the Container with which this instance is associated. |
getContainer | public Container getContainer()(Code) | | Return the Container with which this instance is associated
(if any); otherwise return null .
|
setContainer | public void setContainer(Container container)(Code) | | Set the Container with which this instance is associated.
Parameters: container - The Container instance with which this instance is tobe associated, or null to disassociate this instancefrom any Container |
|
|