CamelCookbook / camel-cookbook-examples

Example source code for Apache Camel Developer's Cookbook

Home Page:http://www.packtpub.com/apache-camel-developers-cookbook/book

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

transformation/normalizer/NormalizerRouteBuilder

jkorab opened this issue · comments

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);