if (idI < QueryType.RESERVED_IDS) throw new LoaderException("ID must be larger than " +
QueryType.RESERVED_IDS + " (the last reserved)");
// Type check
if (StringUtils.isEmpty(type)) type = "text";
FeedType typeI = TYPES.get(type.trim().toLowerCase());
if (typeI == null) throw new LoaderException("Type can be: text, link, image");
// Mode check
if (StringUtils.isEmpty(mode)) mode = "full";
Integer modeI = MODES.get(mode.trim().toLowerCase());