Package de.xima.fc.form.common.models
Class UploadFileMeta
java.lang.Object
de.xima.fc.form.common.models.UploadFileMeta
- All Implemented Interfaces:
Serializable
Meta data about an uploaded file.
- Since:
- 7.0.11
- Author:
- XIMA MEDIA GmbH
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionUploadFileMeta
(String fieldName, String fileName, long sizeBytes, String contentType) -
Method Summary
Modifier and TypeMethodDescriptionlong
-
Constructor Details
-
UploadFileMeta
-
-
Method Details
-
getFieldName
- Returns:
- The name of the form field where the file was uploaded.
-
getContentType
- Returns:
- The content type of the file's content.
-
getFileName
- Returns:
- The original name of the uploaded file.
-
getSizeBytes
public long getSizeBytes()- Returns:
- The size in bytes of the file's content.
-