org.apache.wicket.examples.requestmapper
Class CustomHomeMapper
java.lang.Object
org.apache.wicket.request.mapper.AbstractMapper
org.apache.wicket.core.request.mapper.AbstractComponentMapper
org.apache.wicket.core.request.mapper.AbstractBookmarkableMapper
org.apache.wicket.core.request.mapper.MountedMapper
org.apache.wicket.core.request.mapper.HomePageMapper
org.apache.wicket.examples.requestmapper.CustomHomeMapper
- All Implemented Interfaces:
- IRequestMapper
public class CustomHomeMapper
- extends HomePageMapper
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
CustomHomeMapper
public CustomHomeMapper(Class<? extends IRequestablePage> pageClass)
- Constructor.
- Parameters:
pageClass
- the class of the home page
mapHandler
public Url mapHandler(IRequestHandler requestHandler)
- Sets the current session Locale as first segment in the Url.
- Specified by:
mapHandler
in interface IRequestMapper
- Overrides:
mapHandler
in class MountedMapper
- Returns:
- Url instance or
null
. - See Also:
MountedMapper.mapHandler(org.apache.wicket.request.IRequestHandler)
mapRequest
public IRequestHandler mapRequest(Request request)
- Removes the leading segment if it a valid Locale
- Specified by:
mapRequest
in interface IRequestMapper
- Overrides:
mapRequest
in class AbstractBookmarkableMapper
- 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)
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)
- Specified by:
getCompatibilityScore
in interface IRequestMapper
- Overrides:
getCompatibilityScore
in class HomePageMapper
- Returns:
- the compatibility score, e.g. count of matching segments
- See Also:
HomePageMapper.getCompatibilityScore(org.apache.wicket.request.Request)
Copyright © 2006-2012 Apache Software Foundation. All Rights Reserved.