home *** CD-ROM | disk | FTP | other *** search
Java Source | 1999-08-29 | 586 b | 27 lines |
- import java.io.*;
- import javax.servlet.*;
- import javax.servlet.http.*;
-
- public class Preload extends GenericServlet
- {
- public void init (ServletConfig conf)
- throws ServletException
- {
- // Called on server startup
- ServletContext ctx = conf.getServletContext();
- ctx.log("Preload(init) called...");
- }
-
-
- public void service(ServletRequest req, ServletResponse resp)
- throws ServletException, IOException
- {
- // Unused
- }
-
- public void destroy()
- {
- // Called on server shutdown
- }
- }
-