04-13-2011 11:39 PM
10-27-2011 08:59 AM
04-20-2012 11:30 AM
import java.util.*;
import org.activiti.engine.delegate.*;
import org.activiti.engine.RepositoryService;
import org.activiti.engine.RuntimeService;
import org.activiti.engine.runtime.ProcessInstance;
import org.activiti.engine.test.ActivitiRule;
@SuppressWarnings("unused")
public class ToUppercase implements JavaDelegate {
public void execute(DelegateExecution execution) throws Exception {
String var = (String) execution.getVariable("cliente");
var = var.toUpperCase();
execution.setVariable("cliente", var);
}
}
08-17-2012 12:02 AM
08-17-2012 03:36 AM
08-17-2012 11:41 AM
why is it a bug if putting the jar file correctly on the classpath solves the 'problem'?
09-19-2013 04:26 PM
09-19-2013 04:30 PM
09-19-2013 04:39 PM
02-25-2016 12:17 PM
02-25-2016 12:25 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.