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$ $Date$
-
-
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
-
-