Package com.starflow.wf.engine.event

Examples of com.starflow.wf.engine.event.ActivityRollBackEvent


   * @param activityInst
   * @param actDefIds
   */
  public static void publishActivityRollBackEvent(ProcessEngine processEngine, ProcessInstance processInstance,
      ActivityInst activityInst, List<String> actDefIds) {
    ActivityRollBackEvent activityRollBackEvent = new ActivityRollBackEvent(processEngine);
    activityRollBackEvent.setProcessInstance(processInstance);
    activityRollBackEvent.setActivityInst(activityInst);
    activityRollBackEvent.setActDefIds(actDefIds);
    processEngine.getApplicationContext().publishEvent(activityRollBackEvent);
  }
View Full Code Here

TOP

Related Classes of com.starflow.wf.engine.event.ActivityRollBackEvent

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.