05-18-2013 01:18 PM
import org.activiti.engine.delegate.DelegateExecution;
import org.activiti.engine.delegate.JavaDelegate;
public class xy implements JavaDelegate {
@Override
public void execute(DelegateExecution execution) {
System.out.println("execution id " + execution.getId());
Long myVar = (Long) execution.getVariable("myVar");
System.out.println("received variable " + myVar);
}
}
05-20-2013 02:11 PM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.