Response response = Util.emptyResponse();
try {
SanitizedConfiguration sanitized =
SanitizedConfiguration.fromUnsanitized(IJobConfiguration.build(description));
PopulateJobResult result = new PopulateJobResult()
.setPopulated(ITaskConfig.toBuildersSet(sanitized.getTaskConfigs().values()));
response.setResult(Result.populateJobResult(result));
response.setResponseCode(OK);
} catch (TaskDescriptionException e) {