Uses of Interface
javax.servlet.Servlet

Packages that use Servlet
javax.servlet   
javax.servlet.http   
 

Uses of Servlet in javax.servlet
 

Classes in javax.servlet that implement Servlet
 class GenericServlet
          The GenericServlet class implements the Servlet interface and, for convenience, the ServletConfig interface.
 

Methods in javax.servlet that return Servlet
 Servlet UnavailableException.getServlet()
          Returns the servlet that is reporting its unavailability.
 Servlet ServletContext.getServlet(java.lang.String name)
          Deprecated. This method has been deprecated for servlet lifecycle reasons. This method will be permanently removed in a future version of the Servlet API.
 

Constructors in javax.servlet with parameters of type Servlet
UnavailableException.UnavailableException(Servlet servlet, java.lang.String msg)
          Constructs a new exception with the specified descriptive message, indicating that the servlet is permanently unavailable.
UnavailableException.UnavailableException(int seconds, Servlet servlet, java.lang.String msg)
          Constructs a new exception with the specified descriptive message, indicating that the servlet is temporarily unavailable and giving an estimate of how long it will be unavailable.
 

Uses of Servlet in javax.servlet.http
 

Classes in javax.servlet.http that implement Servlet
 class HttpServlet
          An abstract class that simplifies writing HTTP servlets.