Interface WebFile
-
public interface WebFile
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Binary
getBinary()
String
getEncoding()
Calendar
getLastModified()
String
getMimeType()
String
getName()
String
getPath()
-
-
-
Method Detail
-
getPath
String getPath()
-
getEncoding
String getEncoding()
- Returns:
- the encoding of this content.
-
getLastModified
Calendar getLastModified()
- Returns:
- the last time this content has changed.
-
getMimeType
String getMimeType()
- Returns:
- the MIME type of this content.
-
getBinary
Binary getBinary()
- Returns:
- the binary data of this content.
-
-