org.apache.wicket.examples.requestmapper
Class CustomHomeMapper
java.lang.Object
org.apache.wicket.request.mapper.AbstractMapper
org.apache.wicket.request.mapper.AbstractComponentMapper
org.apache.wicket.examples.requestmapper.CustomHomeMapper
- All Implemented Interfaces:
- IRequestMapper
public class CustomHomeMapper
- extends AbstractComponentMapper
An IRequestMapper
that handles requests to the home page ('/') and appends the string
representation of the current session locale in the URL
I.e. a request to http://example.com/app will end up in http://example.com/app/en_US
- Author:
- mgrigorov
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
CustomHomeMapper
public CustomHomeMapper()
getCompatibilityScore
public int getCompatibilityScore(Request request)
- If there is just one url segment (the locale?!) then return a bigger compatibility score than
HomePageMapper.getCompatibilityScore(Request)
- Returns:
- the compatibility score, e.g. count of matching segments
- See Also:
HomePageMapper.getCompatibilityScore(org.apache.wicket.request.Request)
mapHandler
public Url mapHandler(IRequestHandler requestHandler)
- Description copied from interface:
IRequestMapper
- Returns the
Url
for given IRequestHandler
or null
if the request
handler is not recognized.
- Returns:
- Url instance or
null
. - See Also:
MountedMapper.mapHandler(org.apache.wicket.request.IRequestHandler)
mapRequest
public IRequestHandler mapRequest(Request request)
- Description copied from interface:
IRequestMapper
- Returns
IRequestHandler
for the request or null
if the Url
is
not recognized.
- Parameters:
request
- provides access to request data (i.e. Url and Parameters)
- Returns:
- RequestHandler instance or
null
- See Also:
AbstractBookmarkableMapper.mapRequest(org.apache.wicket.request.Request)
Copyright © 2006-2012 Apache Software Foundation. All Rights Reserved.