| org.apache.catalina.ContainerServlet
All known Subclasses: org.apache.catalina.servlets.ManagerServlet, org.apache.catalina.servlets.InvokerServlet,
ContainerServlet | public interface ContainerServlet (Code) | | 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 version: $Revision: 1.3 $ $Date: 2001/07/22 20:13:30 $ |
Method Summary | |
public Wrapper | getWrapper() Return the Wrapper with which this Servlet is associated. | public void | setWrapper(Wrapper wrapper) Set the Wrapper with which this Servlet is associated. |
getWrapper | public Wrapper getWrapper()(Code) | | Return the Wrapper with which this Servlet is associated.
|
setWrapper | public void setWrapper(Wrapper wrapper)(Code) | | Set the Wrapper with which this Servlet is associated.
Parameters: wrapper - The new associated Wrapper |
|
|