throws ProtocolException, FolderException {
String commandName = parser.atom(request);
ImapCommand command = commandFactory.getCommand(commandName);
if (command == null ||
!(command instanceof UidEnabledCommand)) {
throw new ProtocolException("Invalid UID command: '" + commandName + "'");
}
((UidEnabledCommand) command).doProcess(request, response, session, true);
}