remove fixme

This commit is contained in:
Tadgh 2021-02-24 22:46:51 -05:00
parent b725c51172
commit 8e060a05e0
1 changed files with 2 additions and 1 deletions

View File

@ -259,7 +259,8 @@ public class BulkDataExportSvcImpl implements IBulkDataExportSvc {
throw new InvalidRequestException("Invalid output format: " + theBulkDataExportOptions.getOutputFormat());
}
// FIXME GGG can we encode BulkDataExportOptions as a JSON string as opposed to this request string. Feels like it would be a more extensible encoding...
// TODO GGG KS can we encode BulkDataExportOptions as a JSON string as opposed to this request string. Feels like it would be a more extensible encoding...
//Probably yes, but this will all need to be rebuilt when we remove this bridge entity
StringBuilder requestBuilder = new StringBuilder();
requestBuilder.append("/").append(JpaConstants.OPERATION_EXPORT);
requestBuilder.append("?").append(JpaConstants.PARAM_EXPORT_OUTPUT_FORMAT).append("=").append(escapeUrlParam(outputFormat));