Package org.apache.camel.builder.sql

Examples of org.apache.camel.builder.sql.Person


    }

    @SuppressWarnings({"rawtypes"})
    private List createBody() {
        List<Person> list = new ArrayList<Person>();
        list.add(new Person("James", "London"));
        list.add(new Person("Guillaume", "Normandy"));
        list.add(new Person("Hiram", "Tampa"));
        list.add(new Person("Rob", "London"));
        return list;
    }
View Full Code Here

TOP

Related Classes of org.apache.camel.builder.sql.Person

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.