Package at.molindo.esi4j.module.hibernate.scrolling

Examples of at.molindo.esi4j.module.hibernate.scrolling.SimpleQueryProvider


   * @param ordered
   *            results ordered by id
   * @return this
   */
  public HibernateIndexManager query(Class<?> type, String hql, boolean ordered) {
    return queryProvider(type, new SimpleQueryProvider(hql, ordered));
  }
View Full Code Here


   * @param ordered
   *            results ordered by id
   * @return this
   */
  public HibernateIndexManager criteria(Class<?> type, DetachedCriteria criteria, boolean ordered) {
    return queryProvider(type, new SimpleQueryProvider(criteria, ordered));
  }
View Full Code Here

TOP

Related Classes of at.molindo.esi4j.module.hibernate.scrolling.SimpleQueryProvider

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.