Package org.apache.wicket.request.mapper
Interface ICompoundRequestMapper
-
- All Superinterfaces:
IRequestMapper
,Iterable<IRequestMapper>
- All Known Implementing Classes:
CompoundRequestMapper
,SystemMapper
public interface ICompoundRequestMapper extends IRequestMapper, Iterable<IRequestMapper>
Mapper that delegates the mapping to a containedIRequestMapper
s with the highest compatibility score.- Author:
- igor.vaynberg
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ICompoundRequestMapper
add(IRequestMapper mapper)
Registers aIRequestMapper
ICompoundRequestMapper
remove(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:
this
for chaining
-
remove
ICompoundRequestMapper remove(IRequestMapper mapper)
Unregisters aIRequestMapper
- Parameters:
mapper
-- Returns:
this
for chaining
-
-