use of org.talend.schemas.esb.locator._2011._11.AssertionType in project tesb-rt-se by Talend.
the class LocatorSoapServiceImpl method createMatcher.
private SLPropertiesMatcher createMatcher(MatcherDataType matcherData) {
SLPropertiesMatcher matcher = null;
if (matcherData != null) {
matcher = new SLPropertiesMatcher();
List<AssertionType> assertions = matcherData.getEntry();
for (AssertionType assertion : assertions) {
matcher.addAssertion(assertion.getKey(), assertion.getValue());
}
}
return matcher;
}
Aggregations