jdlRecExpr = (RecordExpr)iteratorExpr.next();
exprTmp = jdlRecExpr.lookup(Jdl.OD_OUTPUT_FILE);
if (exprTmp == null) {
throw new IllegalArgumentException("OutputFile is mandatory for the OutputData jdl attribute.");
}
outputDataRecord.setODOutputFile(exprTmp.stringValue());
exprTmp = jdlRecExpr.lookup(Jdl.OD_LOGICAL_FILENAME);
outputDataRecord.setODLogicalFilename((exprTmp != null) ? exprTmp.stringValue() : "");
exprTmp = jdlRecExpr.lookup(Jdl.OD_STORAGE_ELEMENT);
outputDataRecord.setODStorageElement((exprTmp != null) ? exprTmp.stringValue() : "");