Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Interface
javax.servlet.Servlet

Uses of Servlet in javax.servlet
 

Classes in javax.servlet that implement Servlet
 class GenericServlet
          Defines a generic, protocol-independent servlet.
 

Fields in javax.servlet declared as Servlet
private  Servlet UnavailableException.servlet
           
 

Methods in javax.servlet that return Servlet
 Servlet UnavailableException.getServlet()
          Deprecated. As of Java Servlet API 2.2, with no replacement. Returns the servlet that is reporting its unavailability.
 Servlet ServletContext.getServlet(java.lang.String name)
          Deprecated. As of Java Servlet API 2.1, with no direct replacement.

This method was originally defined to retrieve a servlet from a ServletContext. In this version, this method always returns null and remains only to preserve binary compatibility. This method will be permanently removed in a future version of the Java Servlet API.

In lieu of this method, servlets can share information using the ServletContext class and can perform shared business logic by invoking methods on common non-servlet classes.

 

Constructors in javax.servlet with parameters of type Servlet
UnavailableException(Servlet servlet, java.lang.String msg)
          Deprecated. As of Java Servlet API 2.2, use UnavailableException.UnavailableException(String) 55 instead.
UnavailableException(int seconds, Servlet servlet, java.lang.String msg)
          Deprecated. As of Java Servlet API 2.2, use UnavailableException.UnavailableException(String, int) 55 instead.