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

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


     * @param payload the XML payload
     * @return the request matcher
     */
    public static RequestMatcher payload(Source payload) {
        Assert.notNull(payload, "'payload' must not be null");
        return new WebServiceMessageMatcherAdapter(new PayloadDiffMatcher(payload));
    }
View Full Code Here


     *
     * @param payload the XML payload
     * @return the response matcher
     */
    public static ResponseMatcher payload(Source payload) {
        return new WebServiceMessageMatcherAdapter(new PayloadDiffMatcher(payload));
    }
View Full Code Here

TOP

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

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.