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

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


     * @param soapHeaderName the qualified name of the SOAP header to expect
     * @return the request matcher
     */
    public static RequestMatcher soapHeader(QName soapHeaderName) {
        Assert.notNull(soapHeaderName, "'soapHeaderName' must not be null");
        return new WebServiceMessageMatcherAdapter(new SoapHeaderMatcher(soapHeaderName));
    }
View Full Code Here


     * @param soapHeaderName the qualified name of the SOAP header to expect
     * @return the request matcher
     */
    public static ResponseMatcher soapHeader(QName soapHeaderName) {
        Assert.notNull(soapHeaderName, "'soapHeaderName' must not be null");
        return new WebServiceMessageMatcherAdapter(new SoapHeaderMatcher(soapHeaderName));
    }
View Full Code Here

TOP

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

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.