Package com.avaje.ebeaninternal.api

Examples of com.avaje.ebeaninternal.api.LoadSecondaryQuery


       
        int batchSize = properties.getQueryFetchBatch();
        if (batchSize == 0){
          batchSize = defaultQueryBatch;
        }
        LoadSecondaryQuery load = getLoadSecondaryQuery(properties.getPath());
        load.loadSecondaryQuery(parentRequest, batchSize, properties.isQueryFetchAll());
      }
    }
  }
View Full Code Here


 
  /**
   * Return the LoadBeanContext or LoadManyContext for the given path.
   */
  private LoadSecondaryQuery getLoadSecondaryQuery(String path){
    LoadSecondaryQuery beanLoad = beanMap.get(path);
    if (beanLoad == null){
      beanLoad = manyMap.get(path);
    }
    return beanLoad;
  }
View Full Code Here

TOP

Related Classes of com.avaje.ebeaninternal.api.LoadSecondaryQuery

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.