CamelCookbook / camel-cookbook-examples

Example source code for Apache Camel Developer's Cookbook
http://www.packtpub.com/apache-camel-developers-cookbook/book
Apache License 2.0
262 stars 188 forks source link

transformation/normalizer/NormalizerRouteBuilder #48

Open jkorab opened 9 years ago

jkorab commented 9 years ago

BindyDataFormat needs fully qualified class name. Was:

    final DataFormat bindy = new BindyCsvDataFormat("org.camelcookbook.transformation.csv.model");

now:

    final DataFormat bindy = new BindyCsvDataFormat(org.camelcookbook.transformation.csv.model.BookModel.class);