inputNode.setDefaultValue(input.getValue());
break;
}
}
if (inputNode.getDefaultValue() == null) {
throw new XBayaRuntimeException("Could not find a input value for component with name :" + inputNode.getName());
}
}
System.err.println("Input all set");
XBayaConfiguration conf = null;
try {
conf = getConfiguration(configurations);
conf.setTopic(topic);
conf.setRunWithCrossProduct(true);
} catch (URISyntaxException e1) {
throw new XBayaRuntimeException(e1);
}
WorkflowInterpretorEventListener listener = null;
WorkflowInterpreter interpreter = null;
if (Boolean.parseBoolean(configurations.get(WITH_LISTENER))) {
listener = new WorkflowInterpretorEventListener(workflow, conf);