225226227228229230231232233234235
} } // if command found, execute if (command != null) { Command.Response resp = command.execute(session, cmdLine.trim()); respond(resp.getCode(), resp.getMessage()); continue; } respond(410, "ERROR unknown command"); }