Package org.huihoo.workflow.usermodel

Examples of org.huihoo.workflow.usermodel.WorkflowParticipant


      workItem);
  }
  public boolean revert(WorkflowSession session, WorkflowWork workItem)
    throws WorkflowException
  {
    WorkflowParticipant participant = session.getParticipant();
    WorkflowWorkValidator workValidator =spiCaseDatabase.getWorkflowWorkValidator();
    if (workValidator != null)
    {
      workValidator.checkRevert(participant, workItem);
    }
View Full Code Here


      workItem);
  }
  public boolean fetch(WorkflowSession session, WorkflowWork workItem)
    throws WorkflowException
  {
    WorkflowParticipant participant = session.getParticipant();
    WorkflowWorkValidator workValidator =
    spiCaseDatabase.getWorkflowWorkValidator();
    if (workValidator != null)
    {
      workValidator.checkFetch(participant, workItem);
View Full Code Here

    String primaryKey)
    throws WorkflowException
  {
    if (getWorkflowCaseValidator() != null)
    {
      WorkflowParticipant participant = session.getParticipant();
      getWorkflowCaseValidator().checkCreate(participant, workflowProcess);
    }
    return spiCaseDatabase.createWorkflowCase(
      workflowProcess,
      creator,
View Full Code Here

    String primaryKey)
    throws WorkflowException
  {
    if (getWorkflowCaseValidator() != null)
    {
      WorkflowParticipant participant = session.getParticipant();
      getWorkflowCaseValidator().checkCreate(participant, workflowProcess);
    }
    return spiCaseDatabase.createWorkflowCase(
      workflowProcess,
      userTransaction,
View Full Code Here

    String name)
    throws WorkflowException
  {
    if (getWorkflowCaseValidator() != null)
    {
      WorkflowParticipant participant = session.getParticipant();
      getWorkflowCaseValidator().checkCreate(participant, workflowProcess);
    }
    return spiCaseDatabase.createWorkflowCase(
      workflowProcess,
      creator,
View Full Code Here

    String name)
    throws WorkflowException
  {
    if (getWorkflowCaseValidator() != null)
    {
      WorkflowParticipant participant = session.getParticipant();
      getWorkflowCaseValidator().checkCreate(participant, workflowProcess);
    }
    return spiCaseDatabase.createWorkflowCase(
      workflowProcess,
      userTransaction,
View Full Code Here

    String description)
    throws WorkflowException
  {
    if (getWorkflowCaseValidator() != null)
    {
      WorkflowParticipant participant = session.getParticipant();
      getWorkflowCaseValidator().checkCreate(participant, workflowProcess);
    }
    return spiCaseDatabase.createWorkflowCase(
      workflowProcess,
      creator,
View Full Code Here

    String description)
    throws WorkflowException
  {
    if (getWorkflowCaseValidator() != null)
    {
      WorkflowParticipant participant = session.getParticipant();
      getWorkflowCaseValidator().checkCreate(participant, workflowProcess);
    }
    return spiCaseDatabase.createWorkflowCase(
      workflowProcess,
      userTransaction,
View Full Code Here

    WorkflowSession session,
    WorkflowProcess workflowProcess,
    String caseId)
    throws WorkflowException
  {
    WorkflowParticipant participant = session.getParticipant();
    WorkflowCase workflowCase =
      spiCaseDatabase.findWorkflowCase(workflowProcess, participant, caseId);
    if (getWorkflowCaseValidator() != null)
    {
      getWorkflowCaseValidator().checkFind(participant, workflowCase);
View Full Code Here

    WorkflowProcess workflowProcess,
    UserTransaction userTransaction,
    String caseId)
    throws WorkflowException
  {
    WorkflowParticipant participant = session.getParticipant();
    WorkflowCase workflowCase =
      spiCaseDatabase.findWorkflowCase(
        workflowProcess,
        participant,
        userTransaction,
View Full Code Here

TOP

Related Classes of org.huihoo.workflow.usermodel.WorkflowParticipant

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.