OutputDataType output = encodeOutput(key, outputParam, mimeType, odt.isAsReference());
processOutputs.getOutput().add(output);
}
} else {
// encode all as inline for the moment
for (String key : outputs.keySet()) {
Parameter<?> outputParam = resultInfo.get(key);
OutputDataType output = encodeOutput(key, outputParam, null, false);
processOutputs.getOutput().add(output);
}
}