home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 August / PCWorld_2001-08_cd.bin / Komunikace / sambar / _setup.1 / Preload.java < prev    next >
Text File  |  1999-08-28  |  586b  |  27 lines

  1. import java.io.*;
  2. import javax.servlet.*;
  3. import javax.servlet.http.*;
  4.  
  5. public class Preload extends GenericServlet
  6. {
  7.     public void init (ServletConfig conf)
  8.         throws ServletException
  9.     {
  10.         // Called on server startup
  11.         ServletContext ctx = conf.getServletContext();
  12.         ctx.log("Preload(init) called...");
  13.     }
  14.  
  15.  
  16.     public void service(ServletRequest req, ServletResponse resp)
  17.         throws ServletException, IOException
  18.     {
  19.         // Unused
  20.     }
  21.  
  22.     public void destroy()
  23.     {
  24.         // Called on server shutdown
  25.     }
  26. }
  27.