this.digester = digester;
}
public Object createObject(Attributes attributes) {
String username = attributes.getValue("username");
User user = database.createUser(username);
user.setFromAddress(attributes.getValue("fromAddress"));
user.setFullName(attributes.getValue("fullName"));
user.setPassword(attributes.getValue("password"));
user.setReplyToAddress(attributes.getValue("replyToAddress"));
return (user);
}