final String operation = this.operation.getValue(ctx.getParsedCommandLine());
final OperationCommand opHandler = getHandler(ctx, operation);
if(opHandler == null) {
throw new CommandFormatException("Unexpected command '" + operation + "'");
}
return opHandler.buildRequest(ctx);
}
@Override
protected void handleResponse(CommandContext ctx, ModelNode opResponse, boolean composite) throws CommandFormatException {
//System.out.println(opResponse);