Uses of Interface
nl.datasteel.crudcraft.runtime.search.SearchRequest
Packages that use SearchRequest
Package
Description
-
Uses of SearchRequest in nl.datasteel.crudcraft.runtime.controller
Classes in nl.datasteel.crudcraft.runtime.controller with type parameters of type SearchRequestModifier and TypeClassDescriptionclassAbstractCrudController<T,U, R, F, Q extends SearchRequest<T>, ID> Generic abstract REST controller exposing a full suite of CRUD endpoints. -
Uses of SearchRequest in nl.datasteel.crudcraft.runtime.service
Methods in nl.datasteel.crudcraft.runtime.service with parameters of type SearchRequestModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<R> AbstractCrudService.search(SearchRequest<T> request, org.springframework.data.domain.Pageable pageable) Retrieve a paginated list of DTO projections, optionally filtered by a search request.org.springframework.data.domain.Page<R> CrudService.search(SearchRequest<T> request, org.springframework.data.domain.Pageable pageable) Execute a typed search using a generated search request object.org.springframework.data.domain.Page<F> AbstractCrudService.searchRef(SearchRequest<T> request, org.springframework.data.domain.Pageable pageable) Retrieve a paginated list of reference DTO projections, optionally filtered by a search request.org.springframework.data.domain.Page<F> CrudService.searchRef(SearchRequest<T> request, org.springframework.data.domain.Pageable pageable) Execute a typed search returning reference DTOs.