Search in sources :

Example 1 with AssertionType

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;
}
Also used : SLPropertiesMatcher(org.talend.esb.servicelocator.client.SLPropertiesMatcher) AssertionType(org.talend.schemas.esb.locator._2011._11.AssertionType)

Aggregations

SLPropertiesMatcher (org.talend.esb.servicelocator.client.SLPropertiesMatcher)1 AssertionType (org.talend.schemas.esb.locator._2011._11.AssertionType)1