urls.add(buildUrl("http://www.example.org/?id=1", "my profile", "Profile"));
urls.add(buildUrl("http://www.example.org/pic/?id=1", "my awesome picture", "Thumbnail"));
person.setUrls(urls);
List<ListField> photos = new ArrayList<ListField>();
PhotoDb photo = new PhotoDb();
photo.setValue("http://www.example.org/pic/?id=1");
photo.setType("thumbnail");
photos.add(photo);
person.setPhotos(photos);
return person;
}