} else if (DecryptParsedCommand.COMMAND_DECRYPT.equals(parsedCommand.getCommand())) {
retVal = new DecryptCmdExecutor();
} else if (RotateParsedCommand.COMMAND_ROTATE.equals(parsedCommand.getCommand())) {
retVal = new RotateCmdExecutor();
} else if (PageLabelsParsedCommand.COMMAND_PAGELABELS.equals(parsedCommand.getCommand())) {
retVal = new PageLabelsCmdExecutor();
} else if (DocumentInfoParsedCommand.COMMAND_SETDOCINFO.equals(parsedCommand.getCommand())) {
retVal = new DocumentInfoCmdExecutor();
} else {
retVal = null;
}