Examples of RevisionTypeAuditExpression


Examples of org.hibernate.envers.query.criteria.internal.RevisionTypeAuditExpression

    for ( RevisionType revisionType : RevisionType.values() ) {
      result.put( revisionType, new ArrayList<Object>() );
      for ( Pair<String, Class> type : entityTypes ) {
        final List<Object> list = auditReaderImplementor.createQuery()
            .forEntitiesModifiedAtRevision( type.getSecond(), type.getFirst(), revision )
            .add( new RevisionTypeAuditExpression( revisionType, "=" ) )
            .getResultList();
        result.get( revisionType ).addAll( list );
      }
    }
    return result;
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.