Package org.activiti.crystalball.simulator.impl.replay

Examples of org.activiti.crystalball.simulator.impl.replay.ReplayUserTaskCompleteEventHandler


  }

  protected Map<String, SimulationEventHandler> getReplayHandlers(String processInstanceId) {
    Map<String, SimulationEventHandler> handlers = new HashMap<String, SimulationEventHandler>();
    handlers.put(PROCESS_INSTANCE_START_EVENT_TYPE, new StartReplayLogEventHandler(processInstanceId, PROCESS_DEFINITION_ID_KEY, SIMULATION_BUSINESS_KEY, VARIABLES_KEY));
    handlers.put(USER_TASK_COMPLETED_EVENT_TYPE, new ReplayUserTaskCompleteEventHandler());
    return handlers;
  }
View Full Code Here

TOP

Related Classes of org.activiti.crystalball.simulator.impl.replay.ReplayUserTaskCompleteEventHandler

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.