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 Detail

      • findAll

        Page<E> findAll​(PagingRequest pagingRequest)
        Returns a Page of entities according to the given pagingRequest.
        Parameters:
        pagingRequest - The PagingRequest that indicates page number, size, sorting options, etc.
        Returns:
        A Page of entities.