Package org.fireflow.engine

Examples of org.fireflow.engine.IWorkItem.jumpTo()


   * @see org.fireflow.engine.IWorkflowSession#completeWorkItemAndJumpTo(java.lang.String, java.lang.String)
   */
  public void completeWorkItemAndJumpTo(String workItemId,
      String targetActivityId) throws EngineException, KernelException {
    IWorkItem wi = this.findWorkItemById(workItemId);
    wi.jumpTo(targetActivityId);

  }

  /* (non-Javadoc)
   * @see org.fireflow.engine.IWorkflowSession#completeWorkItemAndJumpTo(java.lang.String, java.lang.String, java.lang.String)
View Full Code Here


   */
  public void completeWorkItemAndJumpTo(String workItemId,
      String targetActivityId, String comments) throws EngineException,
      KernelException {
    IWorkItem wi = this.findWorkItemById(workItemId);
    wi.jumpTo(targetActivityId, comments);
  }

  /* (non-Javadoc)
   * @see org.fireflow.engine.IWorkflowSession#completeWorkItemAndJumpTo(java.lang.String, java.lang.String, org.fireflow.engine.taskinstance.DynamicAssignmentHandler, java.lang.String)
   */
 
View Full Code Here

  public void completeWorkItemAndJumpTo(String workItemId,
      String targetActivityId,
      DynamicAssignmentHandler dynamicAssignmentHandler, String comments)
      throws EngineException, KernelException {
    IWorkItem wi = this.findWorkItemById(workItemId);
    wi.jumpTo(targetActivityId, dynamicAssignmentHandler, comments);

  }
  /* (non-Javadoc)
   * @see org.fireflow.engine.IWorkflowSession#completeWorkItemAndJumpToEx(java.lang.String, java.lang.String, org.fireflow.engine.taskinstance.DynamicAssignmentHandler, java.lang.String)
   */
 
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.