@Repository(value="bitLogItemRepo") public interface JpaBitLogItemRepo extends org.springframework.data.jpa.repository.JpaRepository<JpaBitLogItem,Long>
| Modifier and Type | Method and Description |
|---|---|
void |
deleteByAccountAndStoreIdAndSpaceId(String account,
String storeId,
String spaceId) |
org.springframework.data.domain.Page<JpaBitLogItem> |
findByAccountAndStoreIdAndSpaceIdOrderByContentIdAsc(String account,
String storeId,
String spaceId,
org.springframework.data.domain.Pageable pageable) |
List<BitLogItem> |
findErrorsAndFailures(String account,
String storeId,
String spaceId) |
deleteAllInBatch, deleteInBatch, findAll, findAll, findAll, flush, getOne, save, saveAndFlushorg.springframework.data.domain.Page<JpaBitLogItem> findByAccountAndStoreIdAndSpaceIdOrderByContentIdAsc(String account, String storeId, String spaceId, org.springframework.data.domain.Pageable pageable)
account - storeId - spaceId - pageable - @Modifying @Query(value="delete from JpaBitLogItem b where b.account = ?1 and b.storeId = ?2 and b.spaceId = ?3") void deleteByAccountAndStoreIdAndSpaceId(String account, String storeId, String spaceId)
account - storeId - spaceId - @Query(value="select b from JpaBitLogItem b where b.account = ?1 and b.storeId = ?2 and b.spaceId = ?3 and (b.result = \'ERROR\' or b.result = \'FAILURE\')") List<BitLogItem> findErrorsAndFailures(String account, String storeId, String spaceId)
account - storeId - spaceId - Copyright © 2013–2015 DuraSpace. All rights reserved.