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 StringOPTION_LONG_FORCE_UPGRADEThe value for the long option force upgrade.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidhandle(Callback[] callbacks)booleanisQuiet()Indicates whether the user has requested quiet output.booleanisVerbose()Indicates whether the user has requested verbose output.static voidmain(String[] args)Provides the command-line arguments to the main tool for processing.static com.forgerock.opendj.cli.ReturnCodemain(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.ReturnCoderun(String... args)Run thisTooltool 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:
codereturned 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.ToolIndicates whether the user has requested quiet output. The default implementation returnsfalse.- Overrides:
isQuietin classcom.forgerock.opendj.cli.Tool- Returns:
trueif the user has requested quiet output.
-
isVerbose
public boolean isVerbose()
Description copied from class:com.forgerock.opendj.cli.ToolIndicates whether the user has requested verbose output. The default implementation returnsfalse.- Overrides:
isVerbosein classcom.forgerock.opendj.cli.Tool- Returns:
trueif 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.ToolRun thisTooltool 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:
runin 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:
handlein interfaceCallbackHandler- Throws:
UnsupportedCallbackException
-
-