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

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


  /**
   * Apply a "greater than" constraint to another property
   */
  public AuditCriterion gtProperty(String otherPropertyName) {
    return new PropertyAuditExpression( propertyNameGetter, otherPropertyName, ">" );
  }
View Full Code Here


  /**
   * Apply a "greater than or equal" constraint to another property
   */
  public AuditCriterion geProperty(String otherPropertyName) {
    return new PropertyAuditExpression( propertyNameGetter, otherPropertyName, ">=" );
  }
View Full Code Here

TOP

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

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.