Package org.apache.camel.test.blueprint

Examples of org.apache.camel.test.blueprint.Foo


        template.sendBody("direct:start", "John,Doe");

        assertMockEndpointsSatisfied();

        Foo foo = getMockEndpoint("mock:result").getReceivedExchanges().get(0).getIn().getBody(Foo.class);
        assertEquals("John", foo.getFirst());
        assertEquals("Doe", foo.getLast());
    }
View Full Code Here


    }

    @Converter
    public static Foo convertToFoo(String data) {
        String[] s = data.split(",");
        Foo foo = new Foo();
        foo.setFirst(s[0]);
        foo.setLast(s[1]);
        return foo;
    }
View Full Code Here

TOP

Related Classes of org.apache.camel.test.blueprint.Foo

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.