if (StringUtils.isBlank(handlerClass))
throw new JobException(this, "Configuration option '" + OPT_HANDLER_CLASS + "' is missing from the job configuration");
UserImpl harvesterUser = new UserImpl(name, site.getIdentifier(), "Harvester");
RecordHandler handler;
try {
Class<? extends AbstractWebloungeRecordHandler> c = (Class<? extends AbstractWebloungeRecordHandler>) Thread.currentThread().getContextClassLoader().loadClass(handlerClass);
Class<?> paramTypes[] = new Class[8];
paramTypes[0] = Site.class;
paramTypes[1] = WritableContentRepository.class;