| java.lang.Object org.apache.catalina.startup.BootstrapService
BootstrapService | final public class BootstrapService implements Daemon(Code) | | Special version of the Catalina bootstrap, designed to be invoked with JNI,
and designed to allow easier wrapping by system level components, which
would otherwise be confused by the asychronous startup and shutdown Catalina
uses. This class should be used to run Catalina as a system service under
Windows NT and clones.
author: Craig R. McClanahan author: Remy Maucherat version: $Revision: 1.16 $ $Date: 2002/07/11 13:47:02 $ |
Method Summary | |
public void | destroy() Destroy the Catalina Service. | public void | init(DaemonContext context) Load the Catalina Service. | public static void | main(String args) Main method, used for testing only. | public void | start() Start the Catalina Service. | public void | stop() Stop the Catalina Service. |
destroy | public void destroy()(Code) | | Destroy the Catalina Service.
|
init | public void init(DaemonContext context) throws Exception(Code) | | Load the Catalina Service.
|
main | public static void main(String args)(Code) | | Main method, used for testing only.
Parameters: args - Command line arguments to be processed |
start | public void start() throws Exception(Code) | | Start the Catalina Service.
|
|
|