Package org.apache.wicket.request.mapper
Interface ICompoundRequestMapper
-
- All Superinterfaces:
IRequestMapper,Iterable<IRequestMapper>
- All Known Implementing Classes:
CompoundRequestMapper
public interface ICompoundRequestMapper extends IRequestMapper, Iterable<IRequestMapper>
Mapper that delegates the mapping to a containedIRequestMappers with the highest compatibility score.- Author:
- igor.vaynberg
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ICompoundRequestMapperadd(IRequestMapper mapper)Registers aIRequestMapperICompoundRequestMapperremove(IRequestMapper mapper)Unregisters aIRequestMapper-
Methods inherited from interface org.apache.wicket.request.IRequestMapper
getCompatibilityScore, mapHandler, mapRequest
-
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
-
-
-
Method Detail
-
add
ICompoundRequestMapper add(IRequestMapper mapper)
Registers aIRequestMapper- Parameters:
mapper-- Returns:
thisfor chaining
-
remove
ICompoundRequestMapper remove(IRequestMapper mapper)
Unregisters aIRequestMapper- Parameters:
mapper-- Returns:
thisfor chaining
-
-