01: package org.emforge.jbpm.event;
02:
03: import org.jbpm.graph.def.ActionHandler;
04: import org.jbpm.graph.exe.ExecutionContext;
05:
06: /** This even is empty - it is required only for using in previously deployed process definitions
07: *
08: */
09: public class TaskClosedEvent implements ActionHandler {
10: private static final long serialVersionUID = 4236006324204115070L;
11:
12: public void execute(ExecutionContext i_context) throws Exception {
13: }
14:
15: }
|