public Iterator findEntitiesForGroup(IEntityGroup group) throws GroupsException {
GroupShadow shadow = getShadow(group);
ArrayList al = new ArrayList();
String[] keys = getPersonKeys(shadow.key);
for (int i=0; i < keys.length; i++){
al.add(new EntityImpl(keys[i],iperson));
}
return al.iterator();
}