Interface PageableRepository<T,K>

Type Parameters:
T - the domain type the repository manages
K - the type of the id of the entity the repository manages
All Superinterfaces:
BasicRepository<T,K>, DataRepository<T,K>

public interface PageableRepository<T,K> extends BasicRepository<T,K>
Repository fragment to provide methods to retrieve entities using the pagination and sorting abstraction. In many cases this will be combined with BasicRepository or similar or with manually added methods to provide CRUD functionality.
See Also: