Package lumis.portal.file
Interface IDownloadableFile
-
- All Known Implementing Classes:
FileConfig
,TransformedFileConfig
public interface IDownloadableFile
An interface ONLY to integrate fileConfigFileConfig
and transformedFileConfigTransformedFileConfig
for a matter of file download.- Since:
- 6.1.0
- Version:
- $Revision: 13752 $ $Date: 2011-10-13 14:10:51 -0300 (Thu, 13 Oct 2011) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getContentType()
Returns the file content typelong
getFileSize()
Returns the file sizejava.lang.String
getName()
Returns the file name
-
-
-
Method Detail
-
getContentType
java.lang.String getContentType()
Returns the file content type- Returns:
- the file content type
- Since:
- 6.1.0
-
getFileSize
long getFileSize()
Returns the file size- Returns:
- the file size
- Since:
- 6.1.0
-
getName
java.lang.String getName()
Returns the file name- Returns:
- the file name
- Since:
- 6.1.0
-
-