// ROUTES
// *************************************************************************
public static class ContextConfig extends RouteBuilder {
public void configure() {
BindyDataFormat bindy = new BindyDataFormat();
bindy.setClassType(Record.class);
bindy.setLocale("en");
bindy.setType(BindyType.Fixed);
from(URI_DIRECT_MARSHALL)
.marshal(bindy)
.to(URI_MOCK_MARSHALL_RESULT);
from(URI_DIRECT_UNMARSHALL)