home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 April / DPPCPRO0499.ISO / April / Notes / 50b2wic.exe / DATA1.CAB / NotesProgramFilesJavaSupport / icsclass.jar / javax / servlet / Servlet.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-11-15  |  531 b   |  16 lines

  1. package javax.servlet;
  2.  
  3. import java.io.IOException;
  4.  
  5. public interface Servlet {
  6.    void init(ServletConfig var1) throws ServletException;
  7.  
  8.    ServletConfig getServletConfig();
  9.  
  10.    void service(ServletRequest var1, ServletResponse var2) throws ServletException, IOException;
  11.  
  12.    String getServletInfo();
  13.  
  14.    void destroy();
  15. }
  16.