Package org.springframework.integration.endpoint

Examples of org.springframework.integration.endpoint.HandlerEndpoint


    }

    public void testCamelTragetEndpoint() throws Exception {
        context =
            new ClassPathXmlApplicationContext(new String[] {"/org/apache/camel/component/spring/integration/adapter/CamelTarget.xml"});
        HandlerEndpoint handlerEndpointA = (HandlerEndpoint)context.getBean("camelTargetA");
        assertNotNull(handlerEndpointA);
        assertEquals("Subscript the wrong channel name", handlerEndpointA.getInputChannelName(), "channelA");
        HandlerEndpoint handlerEndpointB = (HandlerEndpoint)context.getBean("camelTargetA");
        assertNotNull(handlerEndpointB);
        assertEquals("Subscript the wrong channel name", handlerEndpointB.getInputChannelName(), "channelA");
        context.destroy();
    }
View Full Code Here

TOP

Related Classes of org.springframework.integration.endpoint.HandlerEndpoint

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.