Package org.springframework.ws.test.support.matcher

Examples of org.springframework.ws.test.support.matcher.XPathExpectationsHelper


class XPathExpectationsHelperAdapter implements RequestXPathExpectations {

    private final XPathExpectationsHelper helper;

    XPathExpectationsHelperAdapter(String expression, Map<String, String> namespaces) {
        helper = new XPathExpectationsHelper(expression, namespaces);
    }
View Full Code Here


class XPathExpectationsHelperAdapter implements ResponseXPathExpectations {

    private final XPathExpectationsHelper helper;

    XPathExpectationsHelperAdapter(String expression, Map<String, String> namespaces) {
        helper = new XPathExpectationsHelper(expression, namespaces);
    }
View Full Code Here

TOP

Related Classes of org.springframework.ws.test.support.matcher.XPathExpectationsHelper

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.