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