Uses of Interface
org.apache.wicket.request.resource.IResource
-
-
Uses of IResource in org.apache.wicket
Methods in org.apache.wicket that return IResource Modifier and Type Method Description IResource
IResourceFactory. newResource(String specification, Locale locale, String style, String variation)
Methods in org.apache.wicket with parameters of type IResource Modifier and Type Method Description void
SharedResources. add(Class<?> scope, String name, Locale locale, String style, String variation, IResource resource)
Adds a resource.void
SharedResources. add(String name, Locale locale, IResource resource)
Adds a resource.void
SharedResources. add(String name, IResource resource)
Adds a resource. -
Uses of IResource in org.apache.wicket.authorization
Methods in org.apache.wicket.authorization with parameters of type IResource Modifier and Type Method Description boolean
IAuthorizationStrategy.AllowAllAuthorizationStrategy. isResourceAuthorized(IResource resource, PageParameters pageParameters)
boolean
IAuthorizationStrategy. isResourceAuthorized(IResource resource, PageParameters parameters)
Checks whether a request with some parameters is allowed to a resource.void
IUnauthorizedResourceRequestListener. onUnauthorizedRequest(IResource resource, PageParameters parameters)
Called when a request to a given resource is not allowed -
Uses of IResource in org.apache.wicket.authorization.strategies
Methods in org.apache.wicket.authorization.strategies with parameters of type IResource Modifier and Type Method Description boolean
CompoundAuthorizationStrategy. isResourceAuthorized(IResource resource, PageParameters parameters)
-
Uses of IResource in org.apache.wicket.authroles.authorization.strategies.role.annotations
Methods in org.apache.wicket.authroles.authorization.strategies.role.annotations with parameters of type IResource Modifier and Type Method Description boolean
AnnotationsRoleAuthorizationStrategy. isResourceAuthorized(IResource resource, PageParameters pageParameters)
-
Uses of IResource in org.apache.wicket.extensions.ajax
Constructors in org.apache.wicket.extensions.ajax with parameters of type IResource Constructor Description AjaxDownloadBehavior(IResource resource)
Download of aIResource
. -
Uses of IResource in org.apache.wicket.extensions.markup.html.captcha
Classes in org.apache.wicket.extensions.markup.html.captcha that implement IResource Modifier and Type Class Description class
CaptchaImageResource
Generates a captcha image. -
Uses of IResource in org.apache.wicket.extensions.markup.html.image.resource
Classes in org.apache.wicket.extensions.markup.html.image.resource that implement IResource Modifier and Type Class Description class
ThumbnailImageResource
Image resource that dynamically scales the given original resource to a thumbnail.Constructors in org.apache.wicket.extensions.markup.html.image.resource with parameters of type IResource Constructor Description ThumbnailImageResource(IResource unscaledImageResource, int maxSize)
Construct. -
Uses of IResource in org.apache.wicket.markup.html.form
Methods in org.apache.wicket.markup.html.form that return IResource Modifier and Type Method Description protected IResource
ImageButton. getImageResource()
Methods in org.apache.wicket.markup.html.form with parameters of type IResource Modifier and Type Method Description void
ImageButton. setImageResource(IResource imageResource)
Constructors in org.apache.wicket.markup.html.form with parameters of type IResource Constructor Description ImageButton(String id, IResource imageResource)
Constructs an image directly from an image resource. -
Uses of IResource in org.apache.wicket.markup.html.image
Methods in org.apache.wicket.markup.html.image that return IResource Modifier and Type Method Description protected IResource
Image. getImageResource()
Methods in org.apache.wicket.markup.html.image with parameters of type IResource Modifier and Type Method Description void
Image. setImageResource(IResource imageResource)
void
Image. setImageResources(IResource... imageResources)
Constructors in org.apache.wicket.markup.html.image with parameters of type IResource Constructor Description Image(String id, IResource imageResource, IResource... imageResources)
Constructs an image directly from an image resource.NonCachingImage(String id, IResource imageResource)
Construct.Source(String id, IResource... imageResources)
Creates a source for a picture -
Uses of IResource in org.apache.wicket.markup.html.image.resource
Classes in org.apache.wicket.markup.html.image.resource that implement IResource Modifier and Type Class Description class
BlobImageResource
An ImageResource subclass for dynamic images that come from database BLOB fields.class
BufferedDynamicImageResource
A DynamicImageResource subclass that holds a BufferedImage generated by code elsewhere.class
DefaultButtonImageResource
Automatically generates a basic button image.class
RenderedDynamicImageResource
A DynamicImageResource subclass that allows easy rendering of regeneratable (unbuffered) dynamic images.Methods in org.apache.wicket.markup.html.image.resource that return IResource Modifier and Type Method Description IResource
LocalizedImageResource. getResource()
return the resourceIResource
DefaultButtonImageResourceFactory. newResource(String specification, Locale locale, String style, String variation)
Methods in org.apache.wicket.markup.html.image.resource with parameters of type IResource Modifier and Type Method Description void
LocalizedImageResource. setResource(IResource resource)
-
Uses of IResource in org.apache.wicket.markup.html.link
Constructors in org.apache.wicket.markup.html.link with parameters of type IResource Constructor Description ResourceLink(String id, IResource resource)
Constructs a link directly to the provided resource. -
Uses of IResource in org.apache.wicket.protocol.ws.api
Classes in org.apache.wicket.protocol.ws.api that implement IResource Modifier and Type Class Description class
WebSocketResource
An IResource that can be used as WebSocket endpoint -
Uses of IResource in org.apache.wicket.request.handler.resource
Methods in org.apache.wicket.request.handler.resource that return IResource Modifier and Type Method Description IResource
ResourceReferenceRequestHandler. getResource()
IResource
ResourceRequestHandler. getResource()
Constructors in org.apache.wicket.request.handler.resource with parameters of type IResource Constructor Description ResourceRequestHandler(IResource resource, PageParameters parameters)
Construct. -
Uses of IResource in org.apache.wicket.request.resource
Classes in org.apache.wicket.request.resource that implement IResource Modifier and Type Class Description class
AbstractResource
Convenience resource implementation.class
BaseDataResource<T>
An abstract resource that can deliver static data - passed to the constructor, or dynamic - returned byBaseDataResource.getData(org.apache.wicket.request.resource.IResource.Attributes)
class
ByteArrayResource
AnIResource
for byte arrays.class
CharSequenceResource
AnIResource
for CharSequences.class
ContextRelativeResource
Resource served from a file relative to the context root.class
CssPackageResource
Package resource for css files.class
DynamicImageResource
Base class for dynamically generated ImageResources.class
JavaScriptPackageResource
Package resource for javascript files.class
PackageResource
Represents a localizable static resource.class
ResourceStreamResource
Aresource
that loads its data fromIResourceStream
Methods in org.apache.wicket.request.resource that return IResource Modifier and Type Method Description abstract IResource
ResourceReference. getResource()
Returns the resource.IResource
ResourceReference.LambdaResourceReference. getResource()
IResource
SharedResourceReference. getResource()
IResource
UrlResourceReference. getResource()
Method parameters in org.apache.wicket.request.resource with type arguments of type IResource Modifier and Type Method Description static ResourceReference
ResourceReference. of(String name, org.danekja.java.util.function.serializable.SerializableSupplier<IResource> resourceSupplier)
Factory method to build a resource reference that uses the provided supplier to return the resource.static ResourceReference
ResourceReference. of(ResourceReference.Key key, org.danekja.java.util.function.serializable.SerializableSupplier<IResource> resourceSupplier)
Factory method to build a resource reference that uses the provided supplier to return the resource.Constructor parameters in org.apache.wicket.request.resource with type arguments of type IResource Constructor Description LambdaResourceReference(String name, org.danekja.java.util.function.serializable.SerializableSupplier<IResource> resourceBuilder)
LambdaResourceReference(ResourceReference.Key key, org.danekja.java.util.function.serializable.SerializableSupplier<IResource> resourceBuilder)
-
Uses of IResource in org.apache.wicket.request.resource.caching
Subinterfaces of IResource in org.apache.wicket.request.resource.caching Modifier and Type Interface Description interface
IStaticCacheableResource
static resource which does not change for the lifetime of the application and should be considered a candidate for long-term caching. -
Uses of IResource in org.apache.wicket.resource
Classes in org.apache.wicket.resource that implement IResource Modifier and Type Class Description class
FileSystemResource
Used to provide resources based on the on Java NIO FileSystem API.
For more information seeFileSystemResourceReference
Methods in org.apache.wicket.resource that return IResource Modifier and Type Method Description IResource
FileSystemResourceReference. getResource()
Creates a newFileSystemResource
and applies the path to it.IResource
TextTemplateResourceReference. getResource()
Creates a new resource which returns the interpolated value of the text template. -
Uses of IResource in org.apache.wicket.resource.bundles
Classes in org.apache.wicket.resource.bundles that implement IResource Modifier and Type Class Description class
ConcatBundleResource
A resource that concatenates several resources into one download.Methods in org.apache.wicket.resource.bundles that return IResource Modifier and Type Method Description IResource
ConcatResourceBundleReference. getResource()
IResource
ResourceBundleReference. getResource()
-
Uses of IResource in org.apache.wicket.settings
Methods in org.apache.wicket.settings with parameters of type IResource Modifier and Type Method Description protected String
DefaultUnauthorizedResourceRequestListener. createErrorMessage(IResource resource, PageParameters parameters)
void
DefaultUnauthorizedResourceRequestListener. onUnauthorizedRequest(IResource resource, PageParameters parameters)
-
Uses of IResource in org.apache.wicket.util.tester
Methods in org.apache.wicket.util.tester with parameters of type IResource Modifier and Type Method Description ResourceReference
BaseWicketTester. startResource(IResource resource)
Simulates a request to a mountedIResource
-