}
@GET
@Produces( { "application/xml", "text/xml" })
public PersonList getPersons() {
final PersonList list = new PersonList();
list.add(new Person("Angela", "Merkel"));
list.add(new Person("Ehud", "Olmert"));
list.add(new Person("George U.", "Bush"));
return list;
}