Package jodd.http.upload
Interface FileUploadFactory
-
- All Known Implementing Classes:
AdaptiveFileUploadFactory,DiskFileUploadFactory,MemoryFileUploadFactory
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface FileUploadFactoryFileUploadfactory for handling uploaded files. Implementations may handle uploaded files differently: to store them to memory, directly to disk or something else.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FileUploadcreate(MultipartRequestInputStream input)Creates new instance ofuploaded file.
-
-
-
Method Detail
-
create
FileUpload create(MultipartRequestInputStream input)
Creates new instance ofuploaded file.
-
-