|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.wicket.request.mapper.AbstractMapper
org.apache.wicket.request.mapper.ResourceMapper
public class ResourceMapper
A IRequestMapper to mount resources to a custom mount path
/myresources/${category}/images/[indexed-param-0]/[indexed-param-1]?[named-param-1=value]&[named-param-2=value2]
mountResource("/images", new ImagesResourceReference()));
Note: Mounted this way the resource reference has application scope, i.e. it is shared between
all users of the application. It is recommended to not keep any state in it.
WebApplication.mountResource(String,
org.apache.wicket.request.resource.ResourceReference)| Constructor Summary | |
|---|---|
ResourceMapper(String path,
ResourceReference resourceReference)
create a resource mapper for a resource |
|
ResourceMapper(String path,
ResourceReference resourceReference,
IPageParametersEncoder encoder)
create a resource mapper for a resource |
|
| Method Summary | |
|---|---|
protected void |
addCachingDecoration(Url url,
PageParameters parameters)
|
protected IResourceCachingStrategy |
getCachingStrategy()
|
int |
getCompatibilityScore(Request request)
Returns the score representing how compatible this request mapper is to processing the given request. |
Url |
mapHandler(IRequestHandler requestHandler)
Returns the Url for given IRequestHandler or null if the request
handler is not recognized. |
IRequestHandler |
mapRequest(Request request)
Returns IRequestHandler for the request or null if the Url is
not recognized. |
protected void |
removeCachingDecoration(Url url,
PageParameters parameters)
|
| Methods inherited from class org.apache.wicket.request.mapper.AbstractMapper |
|---|
encodePageParameters, extractPageParameters, getMountSegments, getOptionalPlaceholder, getPlaceholder, getPlaceholder, removeMetaParameter, urlStartsWith |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public ResourceMapper(String path,
ResourceReference resourceReference)
path - mount path for the resourceresourceReference - resource reference that should be linked to the mount pathResourceMapper(String, org.apache.wicket.request.resource.ResourceReference,
org.apache.wicket.request.mapper.parameter.IPageParametersEncoder)
public ResourceMapper(String path,
ResourceReference resourceReference,
IPageParametersEncoder encoder)
path - mount path for the resourceresourceReference - resource reference that should be linked to the mount pathencoder - encoder for url parameters| Method Detail |
|---|
public IRequestHandler mapRequest(Request request)
IRequestMapperIRequestHandler for the request or null if the Url is
not recognized.
mapRequest in interface IRequestMapperrequest - provides access to request data (i.e. Url and Parameters)
nullpublic int getCompatibilityScore(Request request)
IRequestMapper
A good criteria for calculating the score is the number of matched url segments. For example
when there are two mappers for a mounted page, one mapped to /foo another to
/foo/bar and the incoming request URL is /foo/bar/baz, the mapping
to /foo/bar should probably handle the request first as it has matching segments
count of 2 while the first one has only matching segments count of 1.
Note that the method can return value greater then zero even if the mapper does not recognize the request.
getCompatibilityScore in interface IRequestMapperpublic Url mapHandler(IRequestHandler requestHandler)
IRequestMapperUrl for given IRequestHandler or null if the request
handler is not recognized.
mapHandler in interface IRequestMappernull.protected IResourceCachingStrategy getCachingStrategy()
protected void addCachingDecoration(Url url,
PageParameters parameters)
protected void removeCachingDecoration(Url url,
PageParameters parameters)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||