Follow through with the split of CRUD repository and sorting repository.

Closes #570
See spring-projects/spring-data-commons#2537
This commit is contained in:
Jens Schauder
2022-02-11 11:52:47 +01:00
parent 1f4395c386
commit f13a54200a

View File

@@ -15,6 +15,7 @@
*/
package org.springframework.data.gemfire.repository;
import org.springframework.data.repository.CrudRepository;
import org.springframework.data.repository.PagingAndSortingRepository;
/**
@@ -24,7 +25,7 @@ import org.springframework.data.repository.PagingAndSortingRepository;
* @author John Blum
* @see org.springframework.data.repository.PagingAndSortingRepository
*/
public interface GemfireRepository<T, ID> extends PagingAndSortingRepository<T, ID> {
public interface GemfireRepository<T, ID> extends CrudRepository<T, ID>, PagingAndSortingRepository<T, ID> {
/**
* Save the entity wrapped by the given {@link Wrapper}.