Package org.apache.catalina
Interface ContainerServlet
- All Known Implementing Classes:
- HostManagerServlet,- HTMLHostManagerServlet,- HTMLManagerServlet,- ManagerServlet
public interface ContainerServlet
A ContainerServlet is a servlet that has access to Catalina
 internal functionality, and is loaded from the Catalina class loader
 instead of the web application class loader.  The property setter
 methods must be called by the container whenever a new instance of
 this servlet is put into service.
- Author:
- Craig R. McClanahan
- 
Method SummaryModifier and TypeMethodDescriptionObtain the Wrapper with which this Servlet is associated.voidsetWrapper(Wrapper wrapper) Set the Wrapper with which this Servlet is associated.
- 
Method Details- 
getWrapperWrapper getWrapper()Obtain the Wrapper with which this Servlet is associated.- Returns:
- The Wrapper with which this Servlet is associated.
 
- 
setWrapperSet the Wrapper with which this Servlet is associated.- Parameters:
- wrapper- The new associated Wrapper
 
 
-