Package org.apache.catalina
Interface Contained
-
- All Known Implementing Classes:
AccessLogValve,AuthenticatorBase,AuthenticatorProxy,BasicAuthenticator,DigestAuthenticator,ErrorReportValve,ExtendedAccessLogValve,FormAuthenticator,GlassFishSingleSignOn,HASessionStoreValve,HASingleSignOn,JDBCAccessLogValve,NonLoginAuthenticator,PEAccessLogValve,PersistentValve,RemoteAddrValve,RemoteHostValve,RequestDumperValve,RequestFilterValve,SingleSignOn,SSLAuthenticator,StandardPipeline,ValveBase,VirtualServerPipeline,WebdavFixValve,WebPipeline
public interface ContainedDecoupling interface which specifies that an implementing class is associated with at most one Container instance.
- Version:
- $Revision: 1.2 $ $Date: 2005/12/08 01:27:14 $
- Author:
- Craig R. McClanahan, Peter Donald
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ContainergetContainer()Return theContainerwith which this instance is associated (if any); otherwise returnnull.voidsetContainer(Container container)Set theContainerwith which this instance is associated.
-
-
-
Method Detail
-
getContainer
Container getContainer()
Return theContainerwith which this instance is associated (if any); otherwise returnnull.
-
setContainer
void setContainer(Container container)
Set theContainerwith which this instance is associated.- Parameters:
container- The Container instance with which this instance is to be associated, ornullto disassociate this instance from any Container
-
-