DATACMNS-129 - Introduced CrudRepository.findAll(Iterable<ID> ids).
This commit is contained in:
@@ -69,6 +69,14 @@ public interface CrudRepository<T, ID extends Serializable> extends Repository<T
|
||||
*/
|
||||
Iterable<T> findAll();
|
||||
|
||||
/**
|
||||
* Returns all instances of the type with the given IDs.
|
||||
*
|
||||
* @param ids
|
||||
* @return
|
||||
*/
|
||||
Iterable<T> findAll(Iterable<ID> ids);
|
||||
|
||||
/**
|
||||
* Returns the number of entities available.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user