public interface WebResource
File
.Modifier and Type | Method and Description |
---|---|
boolean |
canRead()
See
File.canRead() . |
boolean |
delete()
See
File.delete() . |
boolean |
exists()
See
File.exists() . |
java.lang.String |
getCanonicalPath()
See
File.getCanonicalPath() . |
java.security.cert.Certificate[] |
getCertificates()
Obtain the certificates that were used to sign this resource to verify
it or @null if none.
|
java.net.URL |
getCodeBase()
Get code base for this resource that will be used when looking up the
assigned permissions for the code base in the security policy file when
running under a security manager.
|
byte[] |
getContent()
Obtain the cached binary content of this resource.
|
long |
getContentLength()
See
File.length() . |
long |
getCreation()
The time the file was created.
|
java.lang.String |
getETag()
Return the strong ETag if available (currently not supported) else return
the weak ETag calculated from the content length and last modified.
|
java.io.InputStream |
getInputStream()
Obtain an InputStream based on the contents of this resource.
|
long |
getLastModified()
See
File.lastModified() . |
java.lang.String |
getLastModifiedHttp()
Return the last modified time of this resource in the correct format for
the HTTP Last-Modified header as specified by RFC 2616.
|
java.util.jar.Manifest |
getManifest()
Obtain the manifest associated with this resource or @null if none.
|
java.lang.String |
getMimeType()
Get the MIME type for this Resource.
|
java.lang.String |
getName()
See
File.getName() . |
java.net.URL |
getURL()
Obtain a URL to access the resource or
null if no such URL
is available or if the resource does not exist. |
java.lang.String |
getWebappPath()
The path of this resource relative to the web application root.
|
WebResourceRoot |
getWebResourceRoot()
Obtain a reference to the WebResourceRoot of which this WebResource is a
part.
|
boolean |
isDirectory()
See
File.isDirectory() . |
boolean |
isFile()
See
File.isFile() . |
boolean |
isVirtual()
Indicates if this resource is required for applications to correctly scan
the file structure but that does not exist in either the main or any
additional
WebResourceSet . |
void |
setMimeType(java.lang.String mimeType)
Set the MIME type for this Resource.
|
long getLastModified()
File.lastModified()
.java.lang.String getLastModifiedHttp()
boolean exists()
File.exists()
.boolean isVirtual()
WebResourceSet
. For example, if an external
directory is mapped to /WEB-INF/lib in an otherwise empty web
application, /WEB-INF will be represented as a virtual resource.boolean isDirectory()
File.isDirectory()
.boolean isFile()
File.isFile()
.boolean delete()
File.delete()
.java.lang.String getName()
File.getName()
.long getContentLength()
File.length()
.java.lang.String getCanonicalPath()
File.getCanonicalPath()
.boolean canRead()
File.canRead()
.java.lang.String getWebappPath()
java.lang.String getETag()
void setMimeType(java.lang.String mimeType)
java.lang.String getMimeType()
java.io.InputStream getInputStream()
null
if the resource does not exist or does not
represent a filebyte[] getContent()
long getCreation()
getLastModified()
will be returned.java.net.URL getURL()
null
if no such URL
is available or if the resource does not exist.java.net.URL getCodeBase()
WebResourceRoot getWebResourceRoot()
java.security.cert.Certificate[] getCertificates()
JarEntry.getCertificates()
java.util.jar.Manifest getManifest()
JarFile.getManifest()
Copyright © 2000-2018 Apache Software Foundation. All Rights Reserved.