Package com.avaje.ebean.event

Examples of com.avaje.ebean.event.BeanPersistController.postLoad()


   */
  @SuppressWarnings("unchecked")
  public void postLoad(Object bean, Set<String> includedProperties) {
    BeanPersistController c = persistController;
    if (c != null) {
      c.postLoad((T) bean, includedProperties);
    }
  }

  public CQueryPlan getQueryPlan(HashQueryPlan key) {
    return queryPlanCache.get(key);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.