Package io.avaje.jex
Interface UploadedFile
-
public interface UploadedFileAn uploaded file.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InputStreamcontent()Return the file content as InputStream.StringcontentType()Return the content type for this part.voiddelete()StringfileName()Return the submitted file name.Stringname()Return the name of the part.longsize()Return the size.
-
-
-
Method Detail
-
name
String name()
Return the name of the part.
-
fileName
String fileName()
Return the submitted file name.
-
content
InputStream content()
Return the file content as InputStream.
-
contentType
String contentType()
Return the content type for this part.
-
size
long size()
Return the size.
-
delete
void delete()
-
-