WW-5461 Extends UploadedFile with inputName field

This commit is contained in:
Lukasz Lenart
2024-09-03 07:40:17 +02:00
parent f388f6a679
commit 735d1bc88d
10 changed files with 88 additions and 8 deletions
@@ -71,6 +71,7 @@ public class PellMultiPartRequest extends AbstractMultiPartRequest {
return new UploadedFile[]{StrutsUploadedFile.Builder.create(multi.getFile(fieldName))
.withContentType(multi.getContentType(fieldName))
.withOriginalName(multi.getFileSystemName(fieldName))
.withInputName(fieldName)
.build()
};
}