All Downloads are FREE. Search and download functionalities are using the official Maven repository.

foundation.jpa.querydsl.spring.impl.AggregateCriteriaImpl Maven / Gradle / Ivy

There is a newer version: 0.29
Show newest version
package foundation.jpa.querydsl.spring.impl;

import com.querydsl.core.types.EntityPath;
import foundation.jpa.querydsl.spring.AggregateCriteria;
import org.springframework.data.domain.Pageable;

public class AggregateCriteriaImpl> extends SearchCriteriaImpl implements AggregateCriteria {

    private final String groupBy;
    private final String select;

    public AggregateCriteriaImpl(String parameterName, String query, String sort, Pageable pageable, E entityPath, String groupBy, String select) {
        super(parameterName, query, sort, pageable, entityPath);
        this.groupBy = groupBy;
        this.select = select;
    }

    @Override
    public String groupBy() {
        return groupBy;
    }

    @Override
    public String select() {
        return select;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy