protected Object executeQuery(PrevalentSystem system) {
if(classRoomId == null){
return system.classRooms;
}else{
if(!system.classRooms.containsKey(classRoomId)){
throw new ClassRoomNameDoesNotExistsInPersistenceException(classRoomId);
}
return system.classRooms.get(classRoomId);
}
}