Class ConditionalResource
- All Implemented Interfaces:
Component,DestructableComponent,IdentifiedComponent,InitializableComponent,Resource,Aware,BeanNameAware,InputStreamSource,Resource
Resource that may be absent by returning an empty bean file instead.- Since:
- 5.4.0
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionlongDetermine the content length for this resource.createRelative(String relativePath) createRelativeResource(String relativePath) Create a resource relative to this resource.booleanexists()Return whether this resource actually exists in physical form.Return a description for this resource, to be used for error output when working with the resource.getFile()Return a File handle for this resource.Determine a filename for this resource, i.e.Return anInputStream.protected StringReturn a prefix for logging messages for this component.getURI()Return a URI handle for this resource.getURL()Return a URL handle for this resource.booleanisFile()Determine whether this resource represents a file in a file system.booleanisOpen()Return whether this resource represents a handle with an open stream.booleanReturn whether the contents of this resource can be read, e.g.longDetermine the last-modified timestamp for this resource.voidsetBeanName(String name) voidsetDefaultContent(String content) Set the default content to return if the underlying resource is absent.voidSets the ID of this component.Methods inherited from class net.shibboleth.shared.component.AbstractIdentifiedInitializableComponent
doInitialize, ensureId, getId, ifDestroyedThrowDestroyedComponentException, ifInitializedThrowUnmodifiabledComponentException, ifNotInitializedThrowUninitializedComponentExceptionMethods inherited from class net.shibboleth.shared.component.AbstractInitializableComponent
checkComponentActive, checkSetterPreconditions, destroy, doDestroy, initialize, isDestroyed, isInitializedMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.springframework.core.io.Resource
getContentAsByteArray, getContentAsString, readableChannel
-
Field Details
-
DEFAULT_CONTENT
Dummy content.- See Also:
-
log
@Nonnull private final org.slf4j.Logger logLogger. -
logPrefix
Cached log prefix. -
wrappedResource
Resource to wrap. -
defaultContent
Content to return if the resource is missing.
-
-
Constructor Details
-
ConditionalResource
Constructor.- Parameters:
wrapped- the resource to wrap
-
-
Method Details
-
setId
Sets the ID of this component. The component must not yet be initialized. NOTE - this declaration makes the method public- Overrides:
setIdin classAbstractIdentifiedInitializableComponent- Parameters:
id- ID of the component
-
setDefaultContent
Set the default content to return if the underlying resource is absent.- Parameters:
content- default "empty" content- Since:
- 6.1.0
-
getInputStream
Return anInputStream.It is expected that each call creates a fresh stream.
This requirement is particularly important when you consider an API such as JavaMail, which needs to be able to read the stream multiple times when creating mail attachments. For such a use case, it is required that each
getInputStream()call returns a fresh stream.- Specified by:
getInputStreamin interfaceInputStreamSource- Specified by:
getInputStreamin interfaceResource- Returns:
- the input stream for the underlying resource (must not be
null) - Throws:
IOException- if the stream could not be opened
-
createRelativeResource
Create a resource relative to this resource.- Specified by:
createRelativeResourcein interfaceResource- Parameters:
relativePath- the relative path (relative to this resource)- Returns:
- the resource handle for the relative resource
- Throws:
IOException- if the relative resource cannot be determined
-
setBeanName
- Specified by:
setBeanNamein interfaceBeanNameAware
-
exists
public boolean exists()Return whether this resource actually exists in physical form.This method performs a definitive existence check, whereas the existence of a
Resourcehandle only guarantees a valid descriptor handle. -
isFile
public boolean isFile()Determine whether this resource represents a file in a file system.A value of
truestrongly suggests (but does not guarantee) that aResource.getFile()call will succeed.This is conservatively
falseby default. -
isReadable
public boolean isReadable()Return whether the contents of this resource can be read, e.g. viaResource.getInputStream()orResource.getFile().Will be
truefor typical resource descriptors; note that actual content reading may still fail when attempted. However, a value offalseis a definitive indication that the resource content cannot be read.- Specified by:
isReadablein interfaceResource- Specified by:
isReadablein interfaceResource- Returns:
- whether the contents of this resource can be read.
- See Also:
-
isOpen
public boolean isOpen()Return whether this resource represents a handle with an open stream. If true, the InputStream cannot be read multiple times, and must be read and closed to avoid resource leaks.Will be
falsefor typical resource descriptors. -
getURL
Return a URL handle for this resource.- Specified by:
getURLin interfaceResource- Specified by:
getURLin interfaceResource- Returns:
- a URL handle for this resource.
- Throws:
IOException- if the resource cannot be resolved as URL, i.e. if the resource is not available as descriptor
-
getURI
Return a URI handle for this resource.- Specified by:
getURIin interfaceResource- Specified by:
getURIin interfaceResource- Returns:
- a URI handle for this resource.
- Throws:
IOException- if the resource cannot be resolved as URI, i.e. if the resource is not available as descriptor
-
getFile
Return a File handle for this resource.- Specified by:
getFilein interfaceResource- Specified by:
getFilein interfaceResource- Returns:
- a File handle for this resource.
- Throws:
IOException- if the resource cannot be resolved as absolute file path, i.e. if the resource is not available in a file system
-
contentLength
Determine the content length for this resource.- Specified by:
contentLengthin interfaceResource- Specified by:
contentLengthin interfaceResource- Returns:
- the content length for this resource.
- Throws:
IOException- if the resource cannot be resolved (in the file system or as some other known physical resource type)
-
lastModified
Determine the last-modified timestamp for this resource.- Specified by:
lastModifiedin interfaceResource- Specified by:
lastModifiedin interfaceResource- Returns:
- the last-modified timestamp for this resource.
- Throws:
IOException- if the resource cannot be resolved (in the file system or as some other known physical resource type)
-
createRelative
- Specified by:
createRelativein interfaceResource- Throws:
IOException
-
getFilename
Determine a filename for this resource, i.e. typically the last part of the path: for example, "myfile.txt".- Specified by:
getFilenamein interfaceResource- Specified by:
getFilenamein interfaceResource- Returns:
nullif this type of resource does not have a filename, otherwise the file name.
-
getDescription
Return a description for this resource, to be used for error output when working with the resource.Implementations are also encouraged to return this value from their
toStringmethod.- Specified by:
getDescriptionin interfaceResource- Specified by:
getDescriptionin interfaceResource- Returns:
- a description for this resource.
- See Also:
-
getLogPrefix
Return a prefix for logging messages for this component.- Returns:
- a string for insertion at the beginning of any log messages
-