Examples of PropertyAuditProjection


Examples of org.hibernate.envers.query.projection.PropertyAuditProjection

    /**
     * Projection on the maximum value
     */
    public AuditProjection max() {
        return new PropertyAuditProjection(propertyNameGetter, "max", false);
    }
View Full Code Here

Examples of org.hibernate.envers.query.projection.PropertyAuditProjection

    /**
     * Projection on the minimum value
     */
    public AuditProjection min() {
        return new PropertyAuditProjection(propertyNameGetter, "min", false);
    }
View Full Code Here

Examples of org.hibernate.envers.query.projection.PropertyAuditProjection

    /**
     * Projection counting the values
     */
    public AuditProjection count() {
        return new PropertyAuditProjection(propertyNameGetter, "count", false);
    }
View Full Code Here

Examples of org.hibernate.envers.query.projection.PropertyAuditProjection

    /**
     * Projection counting distinct values
     */
    public AuditProjection countDistinct() {
        return new PropertyAuditProjection(propertyNameGetter, "count", true);
    }
View Full Code Here

Examples of org.hibernate.envers.query.projection.PropertyAuditProjection

    /**
     * Projection on distinct values
     */
    public AuditProjection distinct() {
        return new PropertyAuditProjection(propertyNameGetter, null, true);
    }
View Full Code Here

Examples of org.hibernate.envers.query.projection.PropertyAuditProjection

    /**
     * Projection using a custom function
     */
    public AuditProjection function(String functionName) {
        return new PropertyAuditProjection(propertyNameGetter, functionName, false);
    }
View Full Code Here

Examples of org.hibernate.envers.query.projection.PropertyAuditProjection

    /**
     * Projection on the maximum value
     */
    public AuditProjection max() {
        return new PropertyAuditProjection(propertyNameGetter, "max", false);
    }
View Full Code Here

Examples of org.hibernate.envers.query.projection.PropertyAuditProjection

    /**
     * Projection on the minimum value
     */
    public AuditProjection min() {
        return new PropertyAuditProjection(propertyNameGetter, "min", false);
    }
View Full Code Here

Examples of org.hibernate.envers.query.projection.PropertyAuditProjection

    /**
     * Projection counting the values
     */
    public AuditProjection count() {
        return new PropertyAuditProjection(propertyNameGetter, "count", false);
    }
View Full Code Here

Examples of org.hibernate.envers.query.projection.PropertyAuditProjection

    /**
     * Projection counting distinct values
     */
    public AuditProjection countDistinct() {
        return new PropertyAuditProjection(propertyNameGetter, "count", true);
    }
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.