Package de.sub.goobi.export.dms

Examples of de.sub.goobi.export.dms.AutomaticDmsExportWithoutHibernate


    }
    return rueckgabe;
  }

  public void executeDmsExport(StepObject step, boolean automatic) {
    AutomaticDmsExportWithoutHibernate dms = new AutomaticDmsExportWithoutHibernate(ConfigMain.getBooleanParameter("automaticExportWithImages",
        true));
    if (!ConfigMain.getBooleanParameter("automaticExportWithOcr", true)) {
      dms.setExportFulltext(false);
    }
    ProcessObject po = ProcessManager.getProcessObjectForId(step.getProcessId());
    try {
      boolean validate = dms.startExport(po);
      if (validate) {
        CloseStepObjectAutomatic(step);
      } else {
        abortStep(step);
      }
View Full Code Here

TOP

Related Classes of de.sub.goobi.export.dms.AutomaticDmsExportWithoutHibernate

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.