org.apache.wicket.examples.requestmapper
Class CustomHomeMapper

java.lang.Object
  extended by org.apache.wicket.request.mapper.AbstractMapper
      extended by org.apache.wicket.request.mapper.AbstractComponentMapper
          extended by 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

Constructor Summary
CustomHomeMapper()
           
 
Method Summary
 int getCompatibilityScore(Request request)
          If there is just one url segment (the locale?!) then return a bigger compatibility score than HomePageMapper.getCompatibilityScore(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.
 
Methods inherited from class org.apache.wicket.request.mapper.AbstractComponentMapper
encodePageComponentInfo, getContext, getPageClass, getPageComponentInfo, removeMetaParameter, requestListenerInterfaceFromString, requestListenerInterfaceToString
 
Methods inherited from class org.apache.wicket.request.mapper.AbstractMapper
encodePageParameters, extractPageParameters, getMountSegments, getOptionalPlaceholder, getPlaceholder, getPlaceholder, urlStartsWith
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CustomHomeMapper

public CustomHomeMapper()
Method Detail

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-2011 Apache Software Foundation. All Rights Reserved.