Uses of Interface
org.apache.wicket.request.resource.IResource
-
Packages that use IResource Package Description org.apache.wicket The core Wicket package.org.apache.wicket.authorization Contains classes that allow the user to specify authorization constraints via IAuthorizationStrategy.org.apache.wicket.authorization.strategies org.apache.wicket.markup.html.form HTML Forms and form components.org.apache.wicket.markup.html.image Image components.org.apache.wicket.markup.html.image.resource Resource support for image components.org.apache.wicket.markup.html.link Link components.org.apache.wicket.request.handler.resource org.apache.wicket.request.resource org.apache.wicket.request.resource.caching org.apache.wicket.resource Locale aware resouce loaders.org.apache.wicket.resource.bundles org.apache.wicket.settings org.apache.wicket.util.tester A package with utility classes to ease unit testing of Wicket applications without the need for a servlet container. -
-
Uses of IResource in org.apache.wicket
Methods in org.apache.wicket that return IResource Modifier and Type Method Description IResourceIResourceFactory. newResource(java.lang.String specification, java.util.Locale locale, java.lang.String style, java.lang.String variation)Methods in org.apache.wicket with parameters of type IResource Modifier and Type Method Description voidSharedResources. add(java.lang.Class<?> scope, java.lang.String name, java.util.Locale locale, java.lang.String style, java.lang.String variation, IResource resource)Adds a resource.voidSharedResources. add(java.lang.String name, java.util.Locale locale, IResource resource)Adds a resource.voidSharedResources. add(java.lang.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 booleanIAuthorizationStrategy.AllowAllAuthorizationStrategy. isResourceAuthorized(IResource resource, org.apache.wicket.request.mapper.parameter.PageParameters pageParameters)booleanIAuthorizationStrategy. isResourceAuthorized(IResource resource, org.apache.wicket.request.mapper.parameter.PageParameters parameters)Checks whether a request with some parameters is allowed to a resource.voidIUnauthorizedResourceRequestListener. onUnauthorizedRequest(IResource resource, org.apache.wicket.request.mapper.parameter.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 booleanCompoundAuthorizationStrategy. isResourceAuthorized(IResource resource, org.apache.wicket.request.mapper.parameter.PageParameters parameters) -
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 IResourceImageButton. getImageResource()Methods in org.apache.wicket.markup.html.form with parameters of type IResource Modifier and Type Method Description voidImageButton. setImageResource(IResource imageResource)Constructors in org.apache.wicket.markup.html.form with parameters of type IResource Constructor Description ImageButton(java.lang.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 IResourceImage. getImageResource()Methods in org.apache.wicket.markup.html.image with parameters of type IResource Modifier and Type Method Description voidImage. setImageResource(IResource imageResource)voidImage. setImageResources(IResource... imageResources)Constructors in org.apache.wicket.markup.html.image with parameters of type IResource Constructor Description Image(java.lang.String id, IResource imageResource, IResource... imageResources)Constructs an image directly from an image resource.NonCachingImage(java.lang.String id, IResource imageResource)Construct.Source(java.lang.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 classBlobImageResourceAn ImageResource subclass for dynamic images that come from database BLOB fields.classBufferedDynamicImageResourceA DynamicImageResource subclass that holds a BufferedImage generated by code elsewhere.classDefaultButtonImageResourceAutomatically generates a basic button image.classRenderedDynamicImageResourceA 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 IResourceLocalizedImageResource. getResource()return the resourceIResourceDefaultButtonImageResourceFactory. newResource(java.lang.String specification, java.util.Locale locale, java.lang.String style, java.lang.String variation)Methods in org.apache.wicket.markup.html.image.resource with parameters of type IResource Modifier and Type Method Description voidLocalizedImageResource. 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(java.lang.String id, IResource resource)Constructs a link directly to the provided resource. -
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 IResourceResourceReferenceRequestHandler. getResource()IResourceResourceRequestHandler. getResource()Constructors in org.apache.wicket.request.handler.resource with parameters of type IResource Constructor Description ResourceRequestHandler(IResource resource, org.apache.wicket.request.mapper.parameter.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 classAbstractResourceConvenience resource implementation.classBaseDataResource<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)classByteArrayResourceAnIResourcefor byte arrays.classCharSequenceResourceAnIResourcefor CharSequences.classContextRelativeResourceResource served from a file relative to the context root.classCssPackageResourcePackage resource for css files.classDynamicImageResourceBase class for dynamically generated ImageResources.classJavaScriptPackageResourcePackage resource for javascript files.classPackageResourceRepresents a localizable static resource.classResourceStreamResourceAresourcethat loads its data fromIResourceStreamMethods in org.apache.wicket.request.resource that return IResource Modifier and Type Method Description abstract IResourceResourceReference. getResource()Returns the resource.IResourceResourceReference.LambdaResourceReference. getResource()IResourceSharedResourceReference. getResource()IResourceUrlResourceReference. getResource()Method parameters in org.apache.wicket.request.resource with type arguments of type IResource Modifier and Type Method Description static ResourceReferenceResourceReference. of(java.lang.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 ResourceReferenceResourceReference. 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(java.lang.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 interfaceIStaticCacheableResourcestatic 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 classFileSystemResourceUsed to provide resources based on the on Java NIO FileSystem API.
For more information seeFileSystemResourceReferenceMethods in org.apache.wicket.resource that return IResource Modifier and Type Method Description IResourceFileSystemResourceReference. getResource()Creates a neworg.apache.wicket.markup.html.media.FileSystemResourceand applies the path to it.IResourceTextTemplateResourceReference. 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 classConcatBundleResourceA resource that concatenates several resources into one download.Methods in org.apache.wicket.resource.bundles that return IResource Modifier and Type Method Description IResourceConcatResourceBundleReference. getResource()IResourceResourceBundleReference. 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 java.lang.StringDefaultUnauthorizedResourceRequestListener. createErrorMessage(IResource resource, org.apache.wicket.request.mapper.parameter.PageParameters parameters)voidDefaultUnauthorizedResourceRequestListener. onUnauthorizedRequest(IResource resource, org.apache.wicket.request.mapper.parameter.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 ResourceReferenceBaseWicketTester. startResource(IResource resource)Simulates a request to a mountedIResource
-