Package org.hibernate.search.engine

Examples of org.hibernate.search.engine.QueryLoader


    multiClassesLoader.setEntityTypes( indexedTargetedEntities );
    return multiClassesLoader;
  }

  private Loader getSingleEntityLoader() {
    final QueryLoader queryLoader = new QueryLoader();
    queryLoader.init( ( Session ) session, searchFactoryImplementor );
    queryLoader.setEntityType( targetedEntities.iterator().next() );
    return queryLoader;
  }
View Full Code Here


        catch ( ClassNotFoundException e ) {
          throw new SearchException( "Unable to load entity class from criteria: " + targetEntity, e );
        }
      }
    }
    QueryLoader queryLoader = new QueryLoader();
    queryLoader.init( ( Session ) session, searchFactoryImplementor );
    queryLoader.setEntityType( entityType );
    queryLoader.setCriteria( criteria );
    return queryLoader;
  }
View Full Code Here

TOP

Related Classes of org.hibernate.search.engine.QueryLoader

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.