package com.vci.server.workflow.server.event;
|
|
import org.jbpm.api.listener.EventListener;
|
import org.jbpm.api.listener.EventListenerExecution;
|
|
import com.vci.server.base.persistence.history.OperationType;
|
|
public class DiscardStatusListener extends BaseRmStatusListener implements EventListener {
|
|
/**
|
* 报废
|
*/
|
private static final long serialVersionUID = 1L;
|
|
public void notify(EventListenerExecution eventListenerExecution) throws Exception {
|
doAction(eventListenerExecution, "PLSTATUS", "4",OperationType.REJECT.toString());
|
}
|
}
|