Package org.hibernate.envers.query.criteria.internal

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


  /**
   * Return the conjuction of two criterions.
   */
  public static AuditCriterion and(AuditCriterion lhs, AuditCriterion rhs) {
    return new LogicalAuditExpression( lhs, rhs, "and" );
  }
View Full Code Here


  /**
   * Return the disjuction of two criterions.
   */
  public static AuditCriterion or(AuditCriterion lhs, AuditCriterion rhs) {
    return new LogicalAuditExpression( lhs, rhs, "or" );
  }
View Full Code Here

TOP

Related Classes of org.hibernate.envers.query.criteria.internal.LogicalAuditExpression

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.