public void test_10() throws SmooksException, IOException, SAXException {
Smooks smooks = new Smooks();
smooks.setReaderConfig(new CSVRecordParserConfigurator("firstname,lastname,$ignore$,gender,age,country")
.setBinding(new Binding("people", Person.class, BindingType.LIST)));
JavaResult result = new JavaResult();
smooks.filterSource(new StreamSource(getClass().getResourceAsStream("input-message-05.csv")), result);
List<Person> people = (List<Person>) result.getBean("people");