How do I map "Joe Smith" to first name "Joe" last name "Smith"?
I already have code to split up the name, I'm not sure how to make that work with the Digester though.
<guestlist>
<guest>
<name>Joe Smith</name>
</guest>
</guestlist>
public class Guest(){
private String firstName;
private String lastName;
...
}