Package com.apps.datastore.dao

Examples of com.apps.datastore.dao.CachedCourseInformationObject


  }

  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;
  }
View Full Code Here

TOP

Related Classes of com.apps.datastore.dao.CachedCourseInformationObject

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.