package com.vci.server.workflow.server.event;
|
|
import org.jbpm.api.listener.EventListener;
|
import org.jbpm.api.listener.EventListenerExecution;
|
|
public class EventTaskTest implements EventListener {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
public void notify(EventListenerExecution execution) throws Exception {
|
System.out.println("任务事件开始!");
|
}
|
|
}
|