List of usage examples for org.springframework.integration.support.utils PatternMatchUtils smartMatchIgnoreCase
public static Boolean smartMatchIgnoreCase(String str, String... patterns)
From source file:org.springframework.integration.support.json.EmbeddedJsonHeadersMessageMapper.java
private boolean matchHeader(String header) { return Boolean.TRUE.equals(this.caseSensitive ? PatternMatchUtils.smartMatch(header, this.headerPatterns) : PatternMatchUtils.smartMatchIgnoreCase(header, this.headerPatterns)); }