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

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


  /**
   * Apply an "equal" constraint to another property
   */
  public AuditCriterion eqProperty(String otherPropertyName) {
    return new PropertyAuditExpression( propertyNameGetter, otherPropertyName, "=" );
  }
View Full Code Here


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

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

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

  /**
   * 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

  /**
   * Apply an "equal" constraint to another property
   */
  public AuditCriterion eqProperty(String otherPropertyName) {
    return new PropertyAuditExpression( propertyNameGetter, otherPropertyName, "=" );
  }
View Full Code Here

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

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

  /**
   * Apply a "less than or equal" constraint to another property
   */
  public AuditCriterion leProperty(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.