Package de.sub.goobi.helper

Examples of de.sub.goobi.helper.ScriptThreadWithoutHibernate.start()


            }
            List<StepObject> steps = StepManager.getStepsForProcess(p.getId());
            for (StepObject s : steps) {
              if (s.getBearbeitungsstatus() == 1 && s.isTypAutomatisch()) {
                ScriptThreadWithoutHibernate myThread = new ScriptThreadWithoutHibernate(s);
                myThread.start();
              }
            }
          }
        } catch (ReadException e) {
          logger.error(e);
View Full Code Here


                    moveFiles(metsfile, basepath, p);
                    List<StepObject> steps = StepManager.getStepsForProcess(p.getId());
                    for (StepObject s : steps) {
                        if (s.getBearbeitungsstatus() == 1 && s.isTypAutomatisch()) {
                            ScriptThreadWithoutHibernate myThread = new ScriptThreadWithoutHibernate(s);
                            myThread.start();
                        }
                    }
                }
            } catch (ReadException e) {
                Helper.setFehlerMeldung("Cannot read file " + processTitle, e);
View Full Code Here

   
    List<StepObject> steps = StepManager.getStepsForProcess(prozessKopie.getId());
    for (StepObject s : steps) {
      if (s.getBearbeitungsstatus() == 1 && s.isTypAutomatisch() ) {
        ScriptThreadWithoutHibernate myThread = new ScriptThreadWithoutHibernate(s);
        myThread.start();
      }
    }
    return "ProzessverwaltungKopie3";

  }
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.