Package org.hibernate.envers.query.internal.impl

Examples of org.hibernate.envers.query.internal.impl.RevisionsOfEntityQuery


   *         can then be executed. The results of the query will be sorted in ascending order by the revision number,
   *         unless an order or projection is added.
   */
  public AuditQuery forRevisionsOfEntity(Class<?> c, boolean selectEntitiesOnly, boolean selectDeletedEntities) {
    c = getTargetClassIfProxied( c );
    return new RevisionsOfEntityQuery(
        auditCfg,
        auditReaderImplementor,
        c,
        selectEntitiesOnly,
        selectDeletedEntities
View Full Code Here


      Class<?> c,
      String entityName,
      boolean selectEntitiesOnly,
      boolean selectDeletedEntities) {
    c = getTargetClassIfProxied( c );
    return new RevisionsOfEntityQuery(
        auditCfg,
        auditReaderImplementor,
        c,
        entityName,
        selectEntitiesOnly,
View Full Code Here

TOP

Related Classes of org.hibernate.envers.query.internal.impl.RevisionsOfEntityQuery

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.