Interface FileDataSource
-
- All Superinterfaces:
javax.activation.DataSource
- All Known Implementing Classes:
AttachmentDataSource
public interface FileDataSource extends javax.activation.DataSource
Provides type and size information from DataSource
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getSize()
Returns the size of the file in bytes.java.lang.String
getType()
Returns the MIME type of the content.java.lang.String
getTypeFromFileName()
Returns the MIME type extension from file name.
-
-
-
Method Detail
-
getType
java.lang.String getType()
Returns the MIME type of the content.- Returns:
- content MIME type.
-
getTypeFromFileName
java.lang.String getTypeFromFileName()
Returns the MIME type extension from file name.- Returns:
- content MIME type extension from file Name.
-
getSize
long getSize()
Returns the size of the file in bytes.- Returns:
- size of file in bytes.
-
-