Package org.eclipse.jetty.util.resource
Class EmptyResource
- java.lang.Object
-
- org.eclipse.jetty.util.resource.Resource
-
- org.eclipse.jetty.util.resource.EmptyResource
-
- All Implemented Interfaces:
Closeable,AutoCloseable,ResourceFactory
@Deprecated(since="2021-05-27") public class EmptyResource extends Resource
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.EmptyResource Represents a resource that does does not refer to any file, url, jar etc.
-
-
Field Summary
Fields Modifier and Type Field Description static ResourceINSTANCEDeprecated.-
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 ResourceaddPath(String path)Deprecated.Returns the resource contained inside the current resource with the given name.voidclose()Deprecated.Release any temporary resources held by the resource.booleandelete()Deprecated.Deletes the given resourcebooleanexists()Deprecated.FilegetFile()Deprecated.File representing the given resource.InputStreamgetInputStream()Deprecated.Input stream to the resourceStringgetName()Deprecated.The name of the resource.ReadableByteChannelgetReadableByteChannel()Deprecated.Readable ByteChannel for the resource.URLgetURL()Deprecated.URL representing the resource.booleanisContainedIn(Resource r)Deprecated.booleanisDirectory()Deprecated.longlastModified()Deprecated.Time resource was last modified.longlength()Deprecated.Length of the resource.String[]list()Deprecated.list of resource names contained in the given resource.booleanrenameTo(Resource dest)Deprecated.Rename the given resource-
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
-
-
-
-
Field Detail
-
INSTANCE
public static final Resource INSTANCE
Deprecated.
-
-
Method Detail
-
isContainedIn
public boolean isContainedIn(Resource r) throws MalformedURLException
Deprecated.- Specified by:
isContainedInin classResource- Throws:
MalformedURLException
-
close
public void close()
Deprecated.Description copied from class:ResourceRelease any temporary resources held by the resource.
-
exists
public boolean exists()
Deprecated.
-
isDirectory
public boolean isDirectory()
Deprecated.- Specified by:
isDirectoryin 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.Description copied from class:ResourceTime resource was last modified.- Specified by:
lastModifiedin classResource- Returns:
- the last modified time as milliseconds since unix epoch
-
length
public long length()
Deprecated.Description copied from class:ResourceLength of the resource.
-
getURL
public URL getURL()
Deprecated.Description copied from class:ResourceURL representing the resource.
-
getFile
public File getFile() throws IOException
Deprecated.Description copied from class:ResourceFile representing the given resource.- Specified by:
getFilein classResource- Returns:
- an File representing the given resource or NULL if this is not possible.
- Throws:
IOException- if unable to get the resource due to permissions
-
getName
public String getName()
Deprecated.Description copied from class:ResourceThe name of the resource.
-
getInputStream
public InputStream getInputStream() throws IOException
Deprecated.Description copied from class:ResourceInput stream to the resource- Specified by:
getInputStreamin classResource- Returns:
- an input stream to the resource
- Throws:
IOException- if unable to open the input stream
-
getReadableByteChannel
public ReadableByteChannel getReadableByteChannel() throws IOException
Deprecated.Description copied from class:ResourceReadable ByteChannel for the resource.- Specified by:
getReadableByteChannelin classResource- Returns:
- an readable bytechannel to the resource or null if one is not available.
- Throws:
IOException- if unable to open the readable bytechannel for the resource.
-
delete
public boolean delete() throws SecurityExceptionDeprecated.Description copied from class:ResourceDeletes the given resource- Specified by:
deletein classResource- Returns:
- true if resource was found and successfully deleted, false if resource didn't exist or was unable to be deleted.
- Throws:
SecurityException- if unable to delete due to permissions
-
renameTo
public boolean renameTo(Resource dest) throws SecurityException
Deprecated.Description copied from class:ResourceRename the given resource- Specified by:
renameToin classResource- Parameters:
dest- the destination name for the resource- Returns:
- true if the resource was renamed, false if the resource didn't exist or was unable to be renamed.
- Throws:
SecurityException- if unable to rename due to permissions
-
list
public String[] list()
Deprecated.Description copied from class:Resourcelist of resource names contained in the given resource. Ordering is unspecified, so callers may wish to sort the return value to ensure deterministic behavior.
-
addPath
public Resource addPath(String path) throws IOException
Deprecated.Description copied from class:ResourceReturns the resource contained inside the current resource with the given name.- Specified by:
addPathin 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:
IOException- if unable to resolve the pathMalformedURLException- 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.
-
-