protected Object executeQuery(PrevalentSystem system){
for (Person person : system.people.values()) {
if (person.getName().equals(name)) {
if (!person.isPersonType("student")) {
throw new StudentNameDoesNotExistsInPersistenceException(name);
}
return person;
}
}
throw new StudentNameDoesNotExistsInPersistenceException(name);
}