foundation.jpa.querydsl.spring.SearchResult Maven / Gradle / Ivy
package foundation.jpa.querydsl.spring;
import com.querydsl.core.types.EntityPath;
import org.springframework.data.domain.Page;
public interface SearchResult {
SearchCriteria extends EntityPath> getCriteria();
Page getPage();
Throwable getError();
boolean hasError();
}