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

foundation.jpa.querydsl.spring.SearchCriteria Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.querydsl.core.types.EntityPath;
import org.springframework.data.domain.Pageable;

public interface SearchCriteria> {

    String getQuery();

    String getSort();

    Pageable getPageable();

    @JsonIgnore
    E getEntityPath();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy