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 RmEditStatusListener extends BaseRmStatusListener implements EventListener {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
public void notify(EventListenerExecution eventlistenerexecution) throws Exception {
|
doAction(eventlistenerexecution, "PLSTATUS", "1", OperationType.UPDATE.toString());
|
// new OAListenerENDCommon().notifyOA(eventlistenerexecution);
|
}
|
|
}
|