Interface CRLExpirationNotificationRepository
-
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<CRLExpirationNotification,Long>,org.springframework.data.jpa.repository.JpaRepository<CRLExpirationNotification,Long>,org.springframework.data.repository.PagingAndSortingRepository<CRLExpirationNotification,Long>,org.springframework.data.repository.query.QueryByExampleExecutor<CRLExpirationNotification>,org.springframework.data.repository.Repository<CRLExpirationNotification,Long>
@Repository public interface CRLExpirationNotificationRepository extends org.springframework.data.jpa.repository.JpaRepository<CRLExpirationNotification,Long>
Spring Data JPA repository for the CRLExpirationNotification entity.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.springframework.data.domain.Page<CRLExpirationNotification>findAll(org.springframework.data.domain.Pageable pageable)List<CRLExpirationNotification>findByCrlUrl(String crl_url)-
Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, save
-
-
-
-
Method Detail
-
findByCrlUrl
List<CRLExpirationNotification> findByCrlUrl(String crl_url)
-
findAll
org.springframework.data.domain.Page<CRLExpirationNotification> findAll(org.springframework.data.domain.Pageable pageable)
- Specified by:
findAllin interfaceorg.springframework.data.repository.PagingAndSortingRepository<CRLExpirationNotification,Long>
-
-