}
if (this.startsWith != null) {
matcherContextList.add(new MatcherContext(new StartsWithMatcher(), this.startsWith));
}
if (this.endsWith != null) {
matcherContextList.add(new MatcherContext(new EndsWithMatcher(), this.endsWith));
}
if (matcherContextList.size() > 1) {
String message = "Only one matching attribute (regexp, equals, contains, wildcard, pattern) can be set: "
+ matcherContextList;
this.logger.error(message);