Package de.xima.fc.common.file
Interface IFileData
-
- All Superinterfaces:
Serializable
- All Known Subinterfaces:
IFormRecordMessageAttachmentData
,IPluginSendMessageAttachment
,ISendMessageAttachmentData
- All Known Implementing Classes:
DefaultFormRecordMessageAttachmentData
,FileData
,SendMessageMessageAttachmentData
public interface IFileData extends Serializable
Common interface for the data of a file.- Since:
- 8.4.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description byte[]
content()
Required.String
contentType()
Required.String
fileName()
Required.
-
-
-
Method Detail
-
content
byte[] content()
Required. The binary content of the file.- Returns:
- The content of the file.
-
fileName
String fileName()
Required. The name of the file.- Returns:
- The name of the file
-
contentType
String contentType()
Required. The MIME type of the file.- Returns:
- The MIME type of the file.
-
-