01: // httpdPreloadInterface.java
02: // $Id: httpdPreloadInterface.java,v 1.3 2000/08/16 21:37:42 ylafon Exp $
03: // (c) COPYRIGHT MIT, INRIA and Keio, 1999.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.jigsaw.http;
07:
08: /**
09: * @version $Revision: 1.3 $
10: * @author Benoît Mahé (bmahe@w3.org)
11: */
12: public interface httpdPreloadInterface {
13:
14: /**
15: * Perform some actions on the server just before startup
16: * @param server the http server
17: */
18: public void preload(httpd server);
19:
20: }
|