Package org.opends.server.tools.upgrade
Class UpgradeCli
- java.lang.Object
-
- com.forgerock.opendj.cli.Tool
-
- com.forgerock.opendj.cli.InteractiveTool
-
- org.opends.server.tools.upgrade.UpgradeCli
-
- All Implemented Interfaces:
Closeable
,AutoCloseable
,CallbackHandler
public final class UpgradeCli extends com.forgerock.opendj.cli.InteractiveTool implements CallbackHandler
This class provides the CLI used for upgrading the OpenDJ product.
-
-
Field Summary
Fields Modifier and Type Field Description static String
OPTION_LONG_FORCE_UPGRADE
The value for the long option force upgrade.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
handle(Callback[] callbacks)
boolean
isQuiet()
Indicates whether the user has requested quiet output.boolean
isVerbose()
Indicates whether the user has requested verbose output.static void
main(String[] args)
Provides the command-line arguments to the main tool for processing.static com.forgerock.opendj.cli.ReturnCode
main(String[] args, PrintStream outStream, PrintStream errStream)
Provides the command-line arguments to the main tool for processing and returns the exit code as an integer.com.forgerock.opendj.cli.ReturnCode
run(String... args)
Run thisTool
tool with the provided arguments.-
Methods inherited from class com.forgerock.opendj.cli.InteractiveTool
getErrStream, isFullyInteractive
-
Methods inherited from class com.forgerock.opendj.cli.Tool
askPort, close, confirmAction, enableConsoleLoggingIfVerbose, errPrintln, errPrintln, errPrintln, errPrintlnSurroundedByBlankLines, errPrintVerboseMessage, flush, flushLogStream, getErrorStream, getInputStream, getOutputStream, isScriptFriendly, logVerboseMessage, mayPrompt, parseArguments, pressReturnToContinue, print, println, println, println, printlnNoWrap, printlnSurroundedByBlankLines, printNoWrap, readInput, readInput, readInputAllowEmpty, readLineOfInput, readPassword, readValidatedInput, readValidatedInputOrThrow, report
-
-
-
-
Field Detail
-
OPTION_LONG_FORCE_UPGRADE
public static final String OPTION_LONG_FORCE_UPGRADE
The value for the long option force upgrade.- See Also:
- Constant Field Values
-
-
Method Detail
-
main
public static void main(String[] args)
Provides the command-line arguments to the main tool for processing.- Parameters:
args
- The set of command-line arguments provided to this program.
-
main
public static com.forgerock.opendj.cli.ReturnCode main(String[] args, PrintStream outStream, PrintStream errStream)
Provides the command-line arguments to the main tool for processing and returns the exit code as an integer.- Parameters:
args
- The set of command-line arguments provided to this program.outStream
- The print stream for standard output.errStream
- The print stream for standard error.- Returns:
code
returned by the upgrade tool. 0 to indicate that the program completed successfully, or non-zero to indicate that an error occurred.
-
isQuiet
public boolean isQuiet()
Description copied from class:com.forgerock.opendj.cli.Tool
Indicates whether the user has requested quiet output. The default implementation returnsfalse
.- Overrides:
isQuiet
in classcom.forgerock.opendj.cli.Tool
- Returns:
true
if the user has requested quiet output.
-
isVerbose
public boolean isVerbose()
Description copied from class:com.forgerock.opendj.cli.Tool
Indicates whether the user has requested verbose output. The default implementation returnsfalse
.- Overrides:
isVerbose
in classcom.forgerock.opendj.cli.Tool
- Returns:
true
if the user has requested verbose output.
-
run
public com.forgerock.opendj.cli.ReturnCode run(String... args) throws com.forgerock.opendj.cli.ClientException
Description copied from class:com.forgerock.opendj.cli.Tool
Run thisTool
tool with the provided arguments. Output and errors will be written on the provided streams.This method can be used to run the tool programmatically.
- Overrides:
run
in classcom.forgerock.opendj.cli.Tool
- Parameters:
args
- Arguments set to pass to the tool.- Returns:
- The tool
ReturnCode
. - Throws:
com.forgerock.opendj.cli.ClientException
- If an error occurs while running the tool.
-
handle
public void handle(Callback[] callbacks) throws UnsupportedCallbackException
- Specified by:
handle
in interfaceCallbackHandler
- Throws:
UnsupportedCallbackException
-
-