).bindTo("orderItems",
orderBean.newBean(ArrayList.class, "/order")
.bindTo(orderBean.newBean(HashMap.class, "order-item")
.bindTo("productId", "order-item/product")
.bindTo("quantity", "order-item/quantity")
.bindTo("price", "order-item/price", new DoubleDecoder()))
);
smooks.addVisitor(orderBean);
JavaResult result = new JavaResult();