session.replyWithSpace(501, "Syntax error.");
return;
}
final char type = param.charAt(0);
final Representation representation = Representations.get(type);
if (representation == null) {
session.replyWithSpace(504, "Not implemented for this command.");
return;
}