Github user tillrohrmann commented on a diff in the pull request: https://github.com/apache/flink/pull/6178#discussion_r196453980 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/rest/handler/HandlerRequest.java --- @@ -129,4 +137,9 @@ public R getRequestBody() { return queryParameter.getValue(); } } + + @Nonnull + public FileUploads getFileUploads() { + return uploadedFiles; + } --- End diff -- I would not expose `FileUploads` to the user but rather return a `Collection<File>`.
---