Examples of AktuelleSchritteForm


Examples of de.sub.goobi.forms.AktuelleSchritteForm

   *            the incoming message
   *
   * @see org.goobi.mq.ActiveMQProcessor#process(org.goobi.mq.MapMessageObjectReader)
   */
  protected void process(MapMessageObjectReader ticket) throws Exception {
    AktuelleSchritteForm dialog = new AktuelleSchritteForm();
    Integer stepID = ticket.getMandatoryInteger("id");
    dialog.setMySchritt(new SchrittDAO().get(stepID));
    if (ticket.hasField("properties")) updateProperties(dialog, ticket.getMapOfStringToString("properties"));
    if (ticket.hasField("message")) addMessageToWikiField(dialog, ticket.getString("message"));
    dialog.SchrittDurchBenutzerAbschliessen();
  }
View Full Code Here

Examples of de.sub.goobi.forms.AktuelleSchritteForm

    this.myDav.UploadFromHome(this.currentStep.getProzess());
    reportProblem();
    this.problemMessage = "";
    this.myProblemStep = "";
    saveStep();
    AktuelleSchritteForm asf = (AktuelleSchritteForm) Helper.getManagedBeanValue("#{AktuelleSchritteForm}");
    return asf.FilterAlleStart();
  }
View Full Code Here

Examples of de.sub.goobi.forms.AktuelleSchritteForm

      reportProblem();
      saveStep();
    }
    this.problemMessage = "";
    this.myProblemStep = "";
    AktuelleSchritteForm asf = (AktuelleSchritteForm) Helper.getManagedBeanValue("#{AktuelleSchritteForm}");
    return asf.FilterAlleStart();
  }
View Full Code Here

Examples of de.sub.goobi.forms.AktuelleSchritteForm

    solveProblem();
    saveStep();
    this.solutionMessage = "";
    this.mySolutionStep = "";

    AktuelleSchritteForm asf = (AktuelleSchritteForm) Helper.getManagedBeanValue("#{AktuelleSchritteForm}");
    return asf.FilterAlleStart();
  }
View Full Code Here

Examples of de.sub.goobi.forms.AktuelleSchritteForm

      saveStep();
    }
    this.solutionMessage = "";
    this.mySolutionStep = "";

    AktuelleSchritteForm asf = (AktuelleSchritteForm) Helper.getManagedBeanValue("#{AktuelleSchritteForm}");
    return asf.FilterAlleStart();
  }
View Full Code Here

Examples of de.sub.goobi.forms.AktuelleSchritteForm

      try {
        this.pdao.save(s.getProzess());
      } catch (DAOException e) {
      }
    }
    AktuelleSchritteForm asf = (AktuelleSchritteForm) Helper.getManagedBeanValue("#{AktuelleSchritteForm}");
    return asf.FilterAlleStart();
  }
View Full Code Here

Examples of de.sub.goobi.forms.AktuelleSchritteForm

        StepObject so = StepManager.getStepById(s.getId());
        so.setEditType(StepEditType.MANUAL_MULTI.getValue());
        helper.CloseStepObjectAutomatic(so, true);
      }
    }
    AktuelleSchritteForm asf = (AktuelleSchritteForm) Helper.getManagedBeanValue("#{AktuelleSchritteForm}");
    return asf.FilterAlleStart();
  }
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.