mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-20 06:45:50 +00:00
Refactored OwnerRepositry
This commit is contained in:
parent
65d27a8753
commit
78fdf70b98
1 changed files with 1 additions and 1 deletions
|
@ -31,6 +31,7 @@ import org.springframework.transaction.annotation.Transactional;
|
||||||
* Data. See:
|
* Data. See:
|
||||||
* https://docs.spring.io/spring-data/jpa/docs/current/reference/html/#repositories.query-methods.query-creation
|
* https://docs.spring.io/spring-data/jpa/docs/current/reference/html/#repositories.query-methods.query-creation
|
||||||
*
|
*
|
||||||
|
* Encapsulates data access operations for the Owner entity.
|
||||||
* @author Ken Krebs
|
* @author Ken Krebs
|
||||||
* @author Juergen Hoeller
|
* @author Juergen Hoeller
|
||||||
* @author Sam Brannen
|
* @author Sam Brannen
|
||||||
|
@ -74,5 +75,4 @@ public interface OwnerRepository extends JpaRepository<Owner, Integer> {
|
||||||
* Returns all the owners from data store
|
* Returns all the owners from data store
|
||||||
**/
|
**/
|
||||||
Page<Owner> findAll(Pageable pageable);
|
Page<Owner> findAll(Pageable pageable);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue