Interface PagingRepository<E,ID>
-
- Type Parameters:
E- Concrete type of the entity to be managed by the repository.ID- Concrete type of the entity's id.
public interface PagingRepository<E,ID>Interface for a repository with paged reading operations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Page<E>findAll(PagingRequest pagingRequest)Returns aPageof entities according to the givenpagingRequest.
-
-
-
Method Detail
-
findAll
Page<E> findAll(PagingRequest pagingRequest)
Returns aPageof entities according to the givenpagingRequest.- Parameters:
pagingRequest- ThePagingRequestthat indicates page number, size, sorting options, etc.- Returns:
- A
Pageof entities.
-
-