07-28-2014 01:33 PM
public void execute(DelegateExecution execution) {
ArrayList<String> clientList = (ArrayList<String>)execution.getVariable("clientList");
execution.setVariable("clientString", clientList.get(0));
System.out.println("Setting the Client: " + clientList.get(0));
String currentClientName = clientList.get(0);
clientList.remove(0);
if(clientList.isEmpty()) {
execution.setVariable("moreClientsToProcess", false);
System.out.println("Client List is now empty");
}
execution.setVariable("clientList", clientList);
}
07-29-2014 09:26 AM
08-01-2014 10:56 AM
08-06-2014 04:11 AM
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.