Set<IPerson> setOfPeople = getAll();
Iterator<IPerson> people = setOfPeople.iterator();
IPerson person;
while (people.hasNext()) {
person = people.next();
json.append(person.toJSONRecord());
if (people.hasNext()) {
json.append(",");
}
}
json.append("]}");