Interface MarkLogicRepository<T,ID extends Serializable>
-
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<T,ID>
,org.springframework.data.repository.PagingAndSortingRepository<T,ID>
,org.springframework.data.repository.Repository<T,ID>
- All Known Implementing Classes:
SimpleMarkLogicRepository
public interface MarkLogicRepository<T,ID extends Serializable> extends org.springframework.data.repository.PagingAndSortingRepository<T,ID>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<T>
findAll()
List<T>
findAll(org.springframework.data.domain.Sort sort)
-
-
-
Method Detail
-
findAll
List<T> findAll()
- Specified by:
findAll
in interfaceorg.springframework.data.repository.CrudRepository<T,ID extends Serializable>
-
findAll
List<T> findAll(org.springframework.data.domain.Sort sort)
- Specified by:
findAll
in interfaceorg.springframework.data.repository.PagingAndSortingRepository<T,ID extends Serializable>
-
-