Package org.huihoo.workflow.xpdl.activity

Examples of org.huihoo.workflow.xpdl.activity.JoinType


    String pathDispBatch)
    throws WorkflowException
  {
    log.debug("[dispatch_join] workitem: " + workflowWork.getInfo() + " | transition: " + workflowTransition.getInfo());

    JoinType joinType = workflowTransition.getToWorkflowActivity().getJoinType();
    if (JoinType.JOIN_AND.equals(joinType))
    {
      return dispatch_andJoin(
        workflowService,
        workflowProcess,
View Full Code Here


    UserTransaction event_userTransaction,
    WorkflowWork workflowWork,
    WorkflowTransition workflowTransition)
  {
    WorkflowActivity joinActivity = workflowTransition.getToWorkflowActivity();
    JoinType joinType = joinActivity.getJoinType();
    if (joinType != null)
    {
      CaseDatabaseImpl caseDatabaseImpl = (CaseDatabaseImpl) workflowService.getCaseDatabase();
      SpiCaseDatabase caseDatabase = caseDatabaseImpl.getWrappedObject();
View Full Code Here

          pathDispBatch);
      }
    }
    else
    {
      JoinType joinType = toActivity.getJoinType();
      if (joinType!=null && !JoinType.JOIN_NA.equals(joinType))
      {
        return JoinActivityController.dispatch_join(workflowService,
          workflowProcess,
          operator,
View Full Code Here

TOP

Related Classes of org.huihoo.workflow.xpdl.activity.JoinType

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.