Class AbstractHeaderMapper.ContentBasedHeaderMatcher
java.lang.Object
org.springframework.integration.mapping.AbstractHeaderMapper.ContentBasedHeaderMatcher
- All Implemented Interfaces:
AbstractHeaderMapper.HeaderMatcher
- Enclosing class:
- AbstractHeaderMapper<T>
protected static class AbstractHeaderMapper.ContentBasedHeaderMatcher extends Object implements AbstractHeaderMapper.HeaderMatcher
A content-based
AbstractHeaderMapper.HeaderMatcher
that matches if the specified
header is contained within a list of candidates. The case of the
header does not matter.- Since:
- 4.1
-
Constructor Summary
Constructors Constructor Description ContentBasedHeaderMatcher(boolean match, Collection<String> content)
-
Method Summary
Modifier and Type Method Description boolean
matchHeader(String headerName)
Specify if the givenheaderName
matches.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.springframework.integration.mapping.AbstractHeaderMapper.HeaderMatcher
isNegated
-
Constructor Details
-
Method Details
-
matchHeader
Description copied from interface:AbstractHeaderMapper.HeaderMatcher
Specify if the givenheaderName
matches.- Specified by:
matchHeader
in interfaceAbstractHeaderMapper.HeaderMatcher
- Parameters:
headerName
- the header name to be matched.- Returns:
true
ifheaderName
matches to thisAbstractHeaderMapper.HeaderMatcher
.
-