|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.mortbay.util.Resource
org.mortbay.util.URLResource
org.openqa.selenium.server.FutureFileResource
public class FutureFileResource
Future File Resource. DGF This is as per the standard Jetty FileResource, but its constructor is private, so I've copied-and-pasted it rather than extending it. It's just like the regular FileResource, but it always claims its lastModified date is in the future, to prevent caching. Handle resources of implied or explicit file type. This class can check for aliasing in the filesystem (eg case insensitivity). By default this is turned on if the platform does not have the "/" path separator, or it can be controlled with the "org.mortbay.util.FileResource.checkAliases" system parameter. If alias checking is turned on, then aliased resources are treated as if they do not exist, nor can they be created.
| Field Summary |
|---|
| Fields inherited from class org.mortbay.util.URLResource |
|---|
_connection, _in, _url, _urlString |
| Constructor Summary | |
|---|---|
FutureFileResource(java.net.URL url)
|
|
FutureFileResource(java.net.URL url,
java.net.URLConnection connection,
java.io.File file)
|
|
| Method Summary | |
|---|---|
org.mortbay.util.Resource |
addPath(java.lang.String path)
|
boolean |
delete()
Deletes the given resource |
java.lang.String |
encode(java.lang.String uri)
Encode according to this resource type. |
boolean |
equals(java.lang.Object o)
|
boolean |
exists()
Returns true if the resource exists. |
java.net.URL |
getAlias()
|
static boolean |
getCheckAliases()
getCheckAliases. |
java.io.File |
getFile()
Returns an File representing the given resource or NULL if this is not possible. |
java.io.InputStream |
getInputStream()
Returns an input stream to the resource |
java.lang.String |
getName()
Returns the name of the resource |
java.io.OutputStream |
getOutputStream()
Returns an output stream to the resource |
int |
hashCode()
|
boolean |
isDirectory()
Returns true if the respresenetd resource is a container/directory. |
long |
lastModified()
Returns the lastModified time, which is always in the distant future to prevent caching. |
long |
length()
Return the length of the resource |
java.lang.String[] |
list()
Returns a list of resources contained in the given resource |
boolean |
renameTo(org.mortbay.util.Resource dest)
Rename the given resource |
static void |
setCheckAliases(boolean checkAliases)
setCheckAliases. |
| Methods inherited from class org.mortbay.util.URLResource |
|---|
checkConnection, getURL, release, toString |
| Methods inherited from class org.mortbay.util.Resource |
|---|
cache, finalize, getAssociate, getListHTML, newResource, newResource, newSystemResource, setAssociate, writeTo |
| Methods inherited from class java.lang.Object |
|---|
clone, getClass, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public FutureFileResource(java.net.URL url)
throws java.io.IOException
java.io.IOException
public FutureFileResource(java.net.URL url,
java.net.URLConnection connection,
java.io.File file)
| Method Detail |
|---|
public static void setCheckAliases(boolean checkAliases)
checkAliases - True of resource aliases are to be checked for (eg case insensitivity or 8.3 short names) and treated as not found.public static boolean getCheckAliases()
public org.mortbay.util.Resource addPath(java.lang.String path)
throws java.io.IOException,
java.net.MalformedURLException
addPath in class org.mortbay.util.URLResourcejava.io.IOException
java.net.MalformedURLExceptionpublic java.net.URL getAlias()
getAlias in class org.mortbay.util.Resourcepublic boolean exists()
exists in class org.mortbay.util.URLResourcepublic long lastModified()
lastModified in class org.mortbay.util.URLResourcepublic boolean isDirectory()
isDirectory in class org.mortbay.util.URLResourcepublic long length()
length in class org.mortbay.util.URLResourcepublic java.lang.String getName()
getName in class org.mortbay.util.URLResourcepublic java.io.File getFile()
getFile in class org.mortbay.util.URLResource
public java.io.InputStream getInputStream()
throws java.io.IOException
getInputStream in class org.mortbay.util.URLResourcejava.io.IOException
public java.io.OutputStream getOutputStream()
throws java.io.IOException,
java.lang.SecurityException
getOutputStream in class org.mortbay.util.URLResourcejava.io.IOException
java.lang.SecurityException
public boolean delete()
throws java.lang.SecurityException
delete in class org.mortbay.util.URLResourcejava.lang.SecurityException
public boolean renameTo(org.mortbay.util.Resource dest)
throws java.lang.SecurityException
renameTo in class org.mortbay.util.URLResourcejava.lang.SecurityExceptionpublic java.lang.String[] list()
list in class org.mortbay.util.URLResourcepublic java.lang.String encode(java.lang.String uri)
encode in class org.mortbay.util.Resourceuri - URI to encode.
public boolean equals(java.lang.Object o)
equals in class org.mortbay.util.URLResourceo -
public int hashCode()
hashCode in class org.mortbay.util.URLResource
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||