This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch camel-master in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 8386dc96af534060cc677152b758bd56e3e1d9f2 Author: James Netherton <jamesnether...@gmail.com> AuthorDate: Fri Feb 14 08:27:46 2020 +0000 Upgarde to Camel 3.1.0 - WIP (bindy) --- .../org/apache/camel/quarkus/component/bindy/it/BindyTestRoute.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration-tests/bindy/src/main/java/org/apache/camel/quarkus/component/bindy/it/BindyTestRoute.java b/integration-tests/bindy/src/main/java/org/apache/camel/quarkus/component/bindy/it/BindyTestRoute.java index f98c016..2d26c32 100644 --- a/integration-tests/bindy/src/main/java/org/apache/camel/quarkus/component/bindy/it/BindyTestRoute.java +++ b/integration-tests/bindy/src/main/java/org/apache/camel/quarkus/component/bindy/it/BindyTestRoute.java @@ -30,13 +30,13 @@ public class BindyTestRoute extends RouteBuilder { public void configure() { BindyDataFormat bindyCsvDataFormat = new BindyDataFormat(); bindyCsvDataFormat.setClassType(CsvOrder.class); - bindyCsvDataFormat.setType(BindyType.Csv); + bindyCsvDataFormat.setType(BindyType.Csv.name()); from("direct:jsonToCsv").marshal(bindyCsvDataFormat); from("direct:csvToJson").unmarshal(bindyCsvDataFormat); BindyDataFormat bindyFixedLengthDataFormat = new BindyDataFormat(); bindyFixedLengthDataFormat.setClassType(FixedLengthOrder.class); - bindyFixedLengthDataFormat.setType(BindyType.Fixed); + bindyFixedLengthDataFormat.setType(BindyType.Fixed.name()); from("direct:jsonToFixedLength").marshal(bindyFixedLengthDataFormat); from("direct:fixedLengthToJson").unmarshal(bindyFixedLengthDataFormat);