09-02-2013 06:34 PM
public class CustomDelegate implements JavaDelegate {
public void execute(DelegateExecution execution) throws Exception {
//Counter
int i= (Integer)execution.getVariable("count");
if(i<5) { i= i+ 1;
execution.setVariable("count", i);
}
//External call
String orderID= (String) execution.getVariable("orderID");
String status= MyUtil.getStatus(orderID);
execution.setVariable("status", status);
}}
09-04-2013 05:35 AM
09-04-2013 12:16 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.