<C extends Command> Future<CommandModule> |
CommandService.run(Class<C> commandClass,
boolean process,
Object... inputs) |
Executes the first command of the given class.
|
<C extends Command> Future<CommandModule> |
CommandService.run(Class<C> commandClass,
boolean process,
Map<String,Object> inputMap) |
Executes the first command of the given class.
|
Future<CommandModule> |
CommandService.run(String className,
boolean process,
Object... inputs) |
Executes the first command of the given class name.
|
Future<CommandModule> |
CommandService.run(String className,
boolean process,
Map<String,Object> inputMap) |
Executes the first command of the given class name.
|
Future<CommandModule> |
CommandService.run(CommandInfo info,
boolean process,
Object... inputs) |
Executes the given command.
|
Future<CommandModule> |
CommandService.run(CommandInfo info,
boolean process,
Map<String,Object> inputMap) |
Executes the given command.
|
<C extends Command> Future<CommandModule> |
DefaultCommandService.run(Class<C> commandClass,
boolean process,
Object... inputs) |
|
<C extends Command> Future<CommandModule> |
DefaultCommandService.run(Class<C> commandClass,
boolean process,
Map<String,Object> inputMap) |
|
Future<CommandModule> |
DefaultCommandService.run(String className,
boolean process,
Object... inputs) |
|
Future<CommandModule> |
DefaultCommandService.run(String className,
boolean process,
Map<String,Object> inputMap) |
|
Future<CommandModule> |
DefaultCommandService.run(CommandInfo info,
boolean process,
Object... inputs) |
|
Future<CommandModule> |
DefaultCommandService.run(CommandInfo info,
boolean process,
Map<String,Object> inputMap) |
|