Package ch.entwine.weblounge.bridge.oaipmh.harvester

Examples of ch.entwine.weblounge.bridge.oaipmh.harvester.RecordHandler


    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;
View Full Code Here

TOP

Related Classes of ch.entwine.weblounge.bridge.oaipmh.harvester.RecordHandler

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.