02-11-2014 08:25 AM
@Override
public void execute(DelegateExecution execution) throws Exception {
Reader readerObj = new Reader();
readerObj.run(); // Creates values in a HashMap within Reader.
MainClass mc = new MainClass();
mc.map = readerObj.getMap(); // Passes the created HashMap into a new global one.
mc.decision = true;
execution.setVariable("decisionVar", mc.decision);
execution.setVariable("mapVar", mc.map); // Sets the HashMap Variable
}
02-11-2014 09:50 AM
02-11-2014 09:57 AM
02-11-2014 10:22 AM
02-11-2014 11:24 AM
02-17-2014 09:08 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.