Package org.fireflow.engine

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


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

  }

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


   * @see org.fireflow.engine.IWorkflowSession#rejectWorkItem(java.lang.String, java.lang.String)
   */
  public void rejectWorkItem(String workItemId, String comments)
      throws EngineException, KernelException {
    IWorkItem workItem = this.findWorkItemById(workItemId);
    workItem.reject(comments);
  }

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