}
}
public Map<RelationshipType, Person> readFamily(String personId) throws ServiceException {
HashMap<RelationshipType, Person> pedigree = new HashMap<RelationshipType, Person>();
Person person = new Person();
person.setId("parent");
pedigree.put(RelationshipType.parent, person);
Person spouse = new Person();
spouse.setId("spouse");
pedigree.put(RelationshipType.spouse, spouse);
Person child = new Person();
child.setId(personId);
pedigree.put(RelationshipType.child, child);
return pedigree;
}