Package org.eclipse.jetty.util.resource
Class URLResource
- java.lang.Object
-
- org.eclipse.jetty.util.resource.Resource
-
- org.eclipse.jetty.util.resource.URLResource
-
- All Implemented Interfaces:
java.io.Closeable
,java.lang.AutoCloseable
,ResourceFactory
- Direct Known Subclasses:
JarResource
@Deprecated(since="2021-05-27") public class URLResource extends Resource
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.URL resource class.
-
-
Field Summary
-
Fields inherited from class org.eclipse.jetty.util.resource.Resource
__defaultUseCaches
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Resource
addPath(java.lang.String path)
Deprecated.Returns the resource contained inside the current resource with the given namevoid
close()
Deprecated.Release any resources held by the resource.boolean
delete()
Deprecated.Deletes the given resourceboolean
equals(java.lang.Object o)
Deprecated.boolean
exists()
Deprecated.Returns true if the represented resource exists.java.io.File
getFile()
Deprecated.Returns an File representing the given resource or NULL if this is not possible.java.io.InputStream
getInputStream()
Deprecated.Returns an input stream to the resource.java.lang.String
getName()
Deprecated.Returns the name of the resourcejava.nio.channels.ReadableByteChannel
getReadableByteChannel()
Deprecated.Readable ByteChannel for the resource.java.net.URL
getURL()
Deprecated.Returns a URL representing the given resourceboolean
getUseCaches()
Deprecated.int
hashCode()
Deprecated.boolean
isContainedIn(Resource containingResource)
Deprecated.boolean
isDirectory()
Deprecated.Returns true if the represented resource is a container/directory.long
lastModified()
Deprecated.Returns the last modified timelong
length()
Deprecated.Return the length of the resourcejava.lang.String[]
list()
Deprecated.Returns a list of resource names contained in the given resourceboolean
renameTo(Resource dest)
Deprecated.Rename the given resourcejava.lang.String
toString()
Deprecated.-
Methods inherited from class org.eclipse.jetty.util.resource.Resource
copyTo, encode, getAlias, getAllResources, getAssociate, getDefaultUseCaches, getListHTML, getListHTML, getResource, getURI, getWeakETag, getWeakETag, isAlias, isContainedIn, isSame, newClassPathResource, newClassPathResource, newResource, newResource, newResource, newResource, newResource, newResource, newSystemResource, release, setAssociate, setDefaultUseCaches, toURL, writeTo
-
-
-
-
Method Detail
-
close
public void close()
Deprecated.Release any resources held by the resource.
-
exists
public boolean exists()
Deprecated.Returns true if the represented resource exists.
-
isDirectory
public boolean isDirectory()
Deprecated.Returns true if the represented resource is a container/directory. If the resource is not a file, resources ending with "/" are considered directories.- Specified by:
isDirectory
in classResource
- Returns:
- true if the represented resource is a container/directory. if the resource is not a file, resources ending with "/" are considered directories.
-
lastModified
public long lastModified()
Deprecated.Returns the last modified time- Specified by:
lastModified
in classResource
- Returns:
- the last modified time as milliseconds since unix epoch
-
length
public long length()
Deprecated.Return the length of the resource
-
getURL
public java.net.URL getURL()
Deprecated.Returns a URL representing the given resource
-
getFile
public java.io.File getFile() throws java.io.IOException
Deprecated.Returns an File representing the given resource or NULL if this is not possible.
-
getName
public java.lang.String getName()
Deprecated.Returns the name of the resource
-
getInputStream
public java.io.InputStream getInputStream() throws java.io.IOException
Deprecated.Returns an input stream to the resource. The underlying url connection will be nulled out to prevent re-use.- Specified by:
getInputStream
in classResource
- Returns:
- an input stream to the resource
- Throws:
java.io.IOException
- if unable to open the input stream
-
getReadableByteChannel
public java.nio.channels.ReadableByteChannel getReadableByteChannel() throws java.io.IOException
Deprecated.Description copied from class:Resource
Readable ByteChannel for the resource.- Specified by:
getReadableByteChannel
in classResource
- Returns:
- an readable bytechannel to the resource or null if one is not available.
- Throws:
java.io.IOException
- if unable to open the readable bytechannel for the resource.
-
delete
public boolean delete() throws java.lang.SecurityException
Deprecated.Deletes the given resource
-
renameTo
public boolean renameTo(Resource dest) throws java.lang.SecurityException
Deprecated.Rename the given resource
-
list
public java.lang.String[] list()
Deprecated.Returns a list of resource names contained in the given resource
-
addPath
public Resource addPath(java.lang.String path) throws java.io.IOException
Deprecated.Returns the resource contained inside the current resource with the given name- Specified by:
addPath
in classResource
- Parameters:
path
- The path segment to add, which is not encoded. The path may be non canonical, but if so then the resulting Resource will return true fromResource.isAlias()
.- Returns:
- the Resource for the resolved path within this Resource.
- Throws:
java.io.IOException
- if unable to resolve the pathjava.net.MalformedURLException
- if the resolution of the path fails because the input path parameter is malformed, or a relative path attempts to access above the root resource.
-
toString
public java.lang.String toString()
Deprecated.- Overrides:
toString
in classjava.lang.Object
-
hashCode
public int hashCode()
Deprecated.- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
Deprecated.- Overrides:
equals
in classjava.lang.Object
-
getUseCaches
public boolean getUseCaches()
Deprecated.
-
isContainedIn
public boolean isContainedIn(Resource containingResource) throws java.net.MalformedURLException
Deprecated.- Specified by:
isContainedIn
in classResource
- Throws:
java.net.MalformedURLException
-
-