Package org.duracloud.mill.db.repo
Interface JpaBitIntegrityReportRepo
-
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<BitIntegrityReport,Long>,org.springframework.data.jpa.repository.JpaRepository<BitIntegrityReport,Long>,org.springframework.data.repository.PagingAndSortingRepository<BitIntegrityReport,Long>,org.springframework.data.repository.query.QueryByExampleExecutor<BitIntegrityReport>,org.springframework.data.repository.Repository<BitIntegrityReport,Long>
@Repository("bitIntegrityReportRepo") public interface JpaBitIntegrityReportRepo extends org.springframework.data.jpa.repository.JpaRepository<BitIntegrityReport,Long>- Author:
- Daniel Bernstein
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.springframework.data.domain.Page<BitIntegrityReport>findByStoreIdAndSpaceIdAndDisplayTrueOrderByCompletionDateDesc(String storeId, String spaceId, org.springframework.data.domain.Pageable pageable)BitIntegrityReportfindFirstByAccountAndStoreIdAndSpaceIdOrderByCompletionDateDesc(String account, String storeId, String spaceId)-
Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, delete, delete, deleteAll, exists, findOne, save
-
Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllInBatch, deleteInBatch, findAll, findAll, findAll, findAll, findAll, flush, getOne, save, saveAndFlush
-
-
-
-
Method Detail
-
findByStoreIdAndSpaceIdAndDisplayTrueOrderByCompletionDateDesc
org.springframework.data.domain.Page<BitIntegrityReport> findByStoreIdAndSpaceIdAndDisplayTrueOrderByCompletionDateDesc(String storeId, String spaceId, org.springframework.data.domain.Pageable pageable)
- Parameters:
storeId-spaceId-pageable-- Returns:
-
findFirstByAccountAndStoreIdAndSpaceIdOrderByCompletionDateDesc
BitIntegrityReport findFirstByAccountAndStoreIdAndSpaceIdOrderByCompletionDateDesc(String account, String storeId, String spaceId)
- Parameters:
account-storeId-spaceId-- Returns:
-
-