@Override
protected Object doExecute() throws Exception {
ServerConnection connection = connect();
AbstractCommand command = new CommandStart();
BaseCommandArgs args = new BaseCommandArgs(moduleNames.split(" "));
command.execute(this, connection, args);
return null;
}