Uses of Interface
com.aspectran.shell.command.Command
-
Packages that use Command Package Description com.aspectran.shell.command com.aspectran.shell.command.builtins Built-in commands provided by Aspectran Shell.com.aspectran.shell.command.option A simple API for presenting, processing and validating a command line interface. -
-
Uses of Command in com.aspectran.shell.command
Classes in com.aspectran.shell.command that implement Command Modifier and Type Class Description class
AbstractCommand
Methods in com.aspectran.shell.command that return Command Modifier and Type Method Description Command
CommandRegistry. getCommand(java.lang.Class<? extends Command> commandClass)
Command
CommandRegistry. getCommand(java.lang.String commandName)
Command
ShellCommandRegistry. getCommand(java.lang.Class<? extends Command> commandClass)
Command
ShellCommandRegistry. getCommand(java.lang.String commandName)
Methods in com.aspectran.shell.command that return types with arguments of type Command Modifier and Type Method Description java.util.Collection<Command>
CommandRegistry. getAllCommands()
java.util.Collection<Command>
ShellCommandRegistry. getAllCommands()
Method parameters in com.aspectran.shell.command with type arguments of type Command Modifier and Type Method Description void
ShellCommandRegistry. addCommand(java.lang.Class<? extends Command> commandClass)
Command
CommandRegistry. getCommand(java.lang.Class<? extends Command> commandClass)
Command
ShellCommandRegistry. getCommand(java.lang.Class<? extends Command> commandClass)
-
Uses of Command in com.aspectran.shell.command.builtins
Classes in com.aspectran.shell.command.builtins that implement Command Modifier and Type Class Description class
AspectCommand
Change the active state of an Aspect or view the list of registered Aspect.class
ClearCommand
Clear the terminal screen.class
EchoCommand
Displays a message on the screen.class
HelpCommand
Display information about builtin commands.class
HistoryCommand
A command that display or delete all previously run commands.class
JettyCommand
Use the command 'jetty' to control the Jetty Server.class
JobCommand
class
PBDecryptCommand
Decrypts the input string using the encryption password.class
PBEncryptCommand
Encrypts the input string using the encryption password.class
QuitCommand
Releases all resources and exits this application.class
RestartCommand
Restarts the Aspectran Shell.class
SysInfoCommand
Displays current JVM runtime information.class
TransletCommand
class
UndertowCommand
Use the command 'undertow' to control the Undertow Server.class
VerboseCommand
Turns on or off the mode that displays a description of the translet before it is executed. -
Uses of Command in com.aspectran.shell.command.option
Methods in com.aspectran.shell.command.option with parameters of type Command Modifier and Type Method Description void
HelpFormatter. printHelp(Command command)
Print the help with the given Command object.void
HelpFormatter. printUsage(Command command)
Prints the usage statement for the specified command.
-