// Now workflow has saved, Now we have to set inputs
List<WorkflowInput> workflowInputs = new ArrayList<WorkflowInput>();
String name = "echo_input";
String type = "String";
String value = "echo_output=ODI Test";
WorkflowInput workflowInput = new WorkflowInput(name, (type == null || type.isEmpty()) ? "String" : type, null,
value, false);
workflowInputs.add(workflowInput);
// Now inputs are set properly to the workflow, now we are about to run the workflow(submit the workflow run to
// intepreterService)