Package org.apache.camel.component.mock

Examples of org.apache.camel.component.mock.MockComponent


    public static class MyModule extends CamelModuleWithMatchingRoutes {
        @Provides
        @JndiBind("foo")
        MockComponent foo() {
            return new MockComponent();
        }
View Full Code Here


/**
*/
public class NamedEndpointBean {
    @Produces @Named("myNamedEndpoint")
    public Endpoint createEndpoint() {
        return new MockEndpoint("mock:nameInjected", new MockComponent());
    }
View Full Code Here

    public static class MyModule extends CamelModuleWithMatchingRoutes {
        @Provides
        @JndiBind("foo")
        MockComponent foo() {
            return new MockComponent();
        }
View Full Code Here

    public static class MyModule extends CamelModuleWithMatchingRoutes {
        @Provides
        @JndiBind("foo")
        MockComponent foo() {
            return new MockComponent();
        }
View Full Code Here

TOP

Related Classes of org.apache.camel.component.mock.MockComponent

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.