Package org.brijframework.resources
Interface Resource
-
- All Known Subinterfaces:
DefaultResource
public interface Resource
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longcontentLength()booleanexists()byte[]getContent()StringgetExtension()FilegetFile()StringgetFilename()StringgetId()InputStreamgetInputStream()StringgetPath()URIgetURI()longlastModified()
-
-
-
Method Detail
-
getId
String getId()
-
exists
boolean exists()
-
getFile
File getFile()
-
getExtension
String getExtension()
-
getURI
URI getURI() throws URISyntaxException
- Throws:
URISyntaxException
-
contentLength
long contentLength()
-
lastModified
long lastModified()
-
getFilename
String getFilename()
-
getContent
byte[] getContent()
-
getInputStream
InputStream getInputStream() throws IOException
- Throws:
IOException
-
getPath
String getPath()
-
-