Package org.apache.wicket.util.resource
Class ResourceStreamWrapper
- java.lang.Object
-
- org.apache.wicket.util.resource.ResourceStreamWrapper
-
- All Implemented Interfaces:
Closeable,Serializable,AutoCloseable,IClusterable,IResourceStream,IModifiable
public class ResourceStreamWrapper extends Object implements IResourceStream
A IResourceStream that wraps another resource stream- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ResourceStreamWrapper(IResourceStream delegate)Creates the wrapper around thedelegateresource stream.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()Closes the resource.StringgetContentType()Gets the mime type of this resourceIResourceStreamgetDelegate()Returns the wrapped delegate.InputStreamgetInputStream()Gets the resource stream.LocalegetLocale()StringgetStyle()StringgetVariation()InstantlastModifiedTime()Gets the last time this modifiable thing changed.Byteslength()Gets the size of this resourcevoidsetLocale(Locale locale)This method shouldn't be used from the outside.voidsetStyle(String style)This method shouldn't be used from the outside.voidsetVariation(String variation)This method shouldn't be used from the outside.
-
-
-
Constructor Detail
-
ResourceStreamWrapper
public ResourceStreamWrapper(IResourceStream delegate)
Creates the wrapper around thedelegateresource stream.- Parameters:
delegate-
-
-
Method Detail
-
getDelegate
public IResourceStream getDelegate()
Returns the wrapped delegate.- Returns:
- the wrapped delegate.
-
getContentType
public String getContentType()
Description copied from interface:IResourceStreamGets the mime type of this resource- Specified by:
getContentTypein interfaceIResourceStream- Returns:
- The mime type of this resource, such as "image/jpeg" or "text/html". Return null to let ResourceStreamRequestHandler handle the Content-Type automatically
-
length
public Bytes length()
Description copied from interface:IResourceStreamGets the size of this resource- Specified by:
lengthin interfaceIResourceStream- Returns:
- The size of this resource in the number of bytes, or
nullif unknown
-
getInputStream
public InputStream getInputStream() throws ResourceStreamNotFoundException
Description copied from interface:IResourceStreamGets the resource stream. You should not directly close this stream. Instead call the close() method on IResourceStream.- Specified by:
getInputStreamin interfaceIResourceStream- Returns:
- Returns the inputStream.
- Throws:
ResourceStreamNotFoundException- See Also:
IResourceStream.close()
-
close
public void close() throws IOException
Description copied from interface:IResourceStreamCloses the resource. Normally, this includes closing any underlying input stream returned by getInputStream().- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Specified by:
closein interfaceIResourceStream- Throws:
IOException
-
getLocale
public Locale getLocale()
- Specified by:
getLocalein interfaceIResourceStream- Returns:
- The Locale where this stream did resolve to
-
setLocale
public void setLocale(Locale locale)
Description copied from interface:IResourceStreamThis method shouldn't be used from the outside. It is used by the Loaders to set the resolved locale.- Specified by:
setLocalein interfaceIResourceStream- Parameters:
locale- The Locale where this stream did resolve to.
-
getStyle
public String getStyle()
- Specified by:
getStylein interfaceIResourceStream- Returns:
- The Style where this stream did resolve to
-
setStyle
public void setStyle(String style)
Description copied from interface:IResourceStreamThis method shouldn't be used from the outside. It is used by the Loaders to set the resolved Style.- Specified by:
setStylein interfaceIResourceStream- Parameters:
style- The style where this stream did resolve to.
-
getVariation
public String getVariation()
- Specified by:
getVariationin interfaceIResourceStream- Returns:
- The Variation where this stream did resolve to
-
setVariation
public void setVariation(String variation)
Description copied from interface:IResourceStreamThis method shouldn't be used from the outside. It is used by the Loaders to set the resolved variation.- Specified by:
setVariationin interfaceIResourceStream- Parameters:
variation- The Variation where this stream did resolve to.
-
lastModifiedTime
public Instant lastModifiedTime()
Description copied from interface:IModifiableGets the last time this modifiable thing changed.- Specified by:
lastModifiedTimein interfaceIModifiable- Returns:
- the last modification
Timeornullif that information is not available
-
-