Package org.goobi.production.export

Examples of org.goobi.production.export.ExportXmlLog.startExport()


  public void CreateXML() {
    ExportXmlLog xmlExport = new ExportXmlLog();
    try {
      LoginForm login = (LoginForm) Helper.getManagedBeanValue("#{LoginForm}");
      String ziel = login.getMyBenutzer().getHomeDir() + this.myProzess.getTitel() + "_log.xml";
      xmlExport.startExport(this.myProzess, ziel);
    } catch (IOException e) {
      Helper.setFehlerMeldung("could not write logfile to home directory: ", e);
    } catch (InterruptedException e) {
      Helper.setFehlerMeldung("could not execute command to write logfile to home directory", e);
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.