public void run(ConsoleOutput consoleOutput, CommandLine commandLine) throws Exception
{
CommandLineUtil.populateUIInputs(commandLine, context, registry);
context.setConsoleOutput(consoleOutput);
Result result = command.execute(context);
if (result != null &&
result.getMessage() != null && result.getMessage().length() > 0)
getConsole().pushToStdOut(result.getMessage() + Config.getLineSeparator());
}