Package org.springframework.ws.server.endpoint.interceptor

Examples of org.springframework.ws.server.endpoint.interceptor.DelegatingSmartEndpointInterceptor


        List<DelegatingSmartEndpointInterceptor> interceptors = new ArrayList<DelegatingSmartEndpointInterceptor>(
                applicationContext.getBeansOfType(DelegatingSmartEndpointInterceptor.class).values());
        assertEquals("not enough smart interceptors found", 6, interceptors.size());

        for (int i = 0; i < interceptors.size(); i++) {
            DelegatingSmartEndpointInterceptor delegatingInterceptor = interceptors.get(i);
            MyInterceptor interceptor = (MyInterceptor) delegatingInterceptor.getDelegate();
            assertEquals("Invalid ordering found for [" + delegatingInterceptor + "]", i, interceptor.getOrder());
        }
    }
View Full Code Here

TOP

Related Classes of org.springframework.ws.server.endpoint.interceptor.DelegatingSmartEndpointInterceptor

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.