map.add("firstName", getFirstName()); map.add("lastName", getLastName()); And it works, but it's a pain to create and needs to be updated any time a field changes. What I'd like to be able to do is loop through all of the get methods, automatically placing them in as ke...