}
private CachedCourseInformationObject getCourseInformation(Key cacheKey)
throws EntityNotFoundException {
Entity e = datastore.get(cacheKey);
CachedCourseInformationObject ccio = new CachedCourseInformationObject(
(Long) e.getProperty("generalSeats"),
(Long) e.getProperty("restrictedSeats"));
return ccio;
}