Examples of PropertyAuditExpression


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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