Package org.apache.camel.model

Examples of org.apache.camel.model.InterceptorDefinition


        };
    }

    public void testNoStreamCaching() throws Exception {
        List<AbstractInterceptorDefinition> interceptors = new LinkedList<AbstractInterceptorDefinition>();
        InterceptorDefinition streamCache = new InterceptorDefinition(new StreamCachingInterceptor());
        interceptors.add(streamCache);
        interceptors.add(new InterceptorDefinition(new DelegateProcessor()));
        StreamCachingInterceptor.noStreamCaching(interceptors);
        assertEquals(1, interceptors.size());
        assertFalse(interceptors.contains(streamCache));
    }
View Full Code Here

TOP

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

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.