Package org.apache.camel.model

Examples of org.apache.camel.model.AbstractInterceptorDefinition


     *
     * @param interceptors the list of interceptors
     */
    public static void noStreamCaching(List<AbstractInterceptorDefinition> interceptors) {
        for (int i = 0; i < interceptors.size(); i++) {
            AbstractInterceptorDefinition interceptor = interceptors.get(i);
            if (interceptor instanceof InterceptorDefinition
                && ((InterceptorDefinition)interceptor).getInterceptor() instanceof StreamCachingInterceptor) {
                interceptors.remove(interceptor);
            }
        }
View Full Code Here

TOP

Related Classes of org.apache.camel.model.AbstractInterceptorDefinition

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.