Package org.fireflow.engine

Examples of org.fireflow.engine.ITaskInstance.suspend()


   * @see org.fireflow.engine.IWorkflowSession#suspendTaskInstance(java.lang.String)
   */
  public ITaskInstance suspendTaskInstance(String taskInstanceId)
      throws EngineException {
    ITaskInstance taskInst = this.findTaskInstanceById(taskInstanceId);
    taskInst.suspend();
    return taskInst;
  }

  /* (non-Javadoc)
   * @see org.fireflow.engine.IWorkflowSession#withdrawWorkItem(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.