org.apache.catalina.startup

Class Tool


public final class Tool
extends java.lang.Object

General purpose wrapper for command line tools that should execute in an environment with the common class loader environment set up by Catalina. This should be executed from a command line script that conforms to the following requirements:

The command line to execute the tool looks like:

   java -classpath $CLASSPATH org.apache.catalina.startup.Tool \
     ${options} ${classname} ${arguments}
 

with the following replacement contents:

  • ${classname} - Fully qualified Java class name of the application's main class.
  • ${arguments} - Command line arguments to be passed to the application's main() method.
  • Version:
    $Revision: 1.4 $ $Date: 2004/02/27 14:58:49 $

    Author:
    Craig R. McClanahan

    Method Summary

    static void
    main(args[] )
    The main program for the bootstrap.

    Method Details

    main

    public static void main(args[] )
    The main program for the bootstrap.

    Parameters:


    Copyright B) 2000-2003 Apache Software Foundation. All Rights Reserved.