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

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


     * @param schema         the schema
     * @param furtherSchemas further schemas, if necessary
     * @return the request matcher
     */
    public static RequestMatcher validPayload(Resource schema, Resource... furtherSchemas) throws IOException {
        return new WebServiceMessageMatcherAdapter(new SchemaValidatingMatcher(schema, furtherSchemas));
    }
View Full Code Here


     * @param schema         the schema
     * @param furtherSchemas further schemas, if necessary
     * @return the response matcher
     */
    public static ResponseMatcher validPayload(Resource schema, Resource... furtherSchemas) throws IOException {
        return new WebServiceMessageMatcherAdapter(new SchemaValidatingMatcher(schema, furtherSchemas));
    }
View Full Code Here

TOP

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

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.