Interface AuditTraceRepository
-
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<AuditTrace,Long>,org.springframework.data.repository.PagingAndSortingRepository<AuditTrace,Long>,org.springframework.data.repository.Repository<AuditTrace,Long>
@Repository public interface AuditTraceRepository extends org.springframework.data.repository.PagingAndSortingRepository<AuditTrace,Long>
Spring Data repository for the AuditTrace entity.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.springframework.data.domain.Page<AuditTrace>findByCaConnector(org.springframework.data.domain.Pageable pageable, CAConnectorConfig caConnector)org.springframework.data.domain.Page<AuditTrace>findByCsr(org.springframework.data.domain.Pageable pageable, CSR csr)List<AuditTrace>findByCsrAndCert(Certificate certificate, CSR csr)org.springframework.data.domain.Page<AuditTrace>findByCsrAndCert(org.springframework.data.domain.Pageable pageable, Certificate certificate, CSR csr)org.springframework.data.domain.Page<AuditTrace>findByPipeline(org.springframework.data.domain.Pageable pageable, Pipeline pipeline)org.springframework.data.domain.Page<AuditTrace>findByProcessInfo(org.springframework.data.domain.Pageable pageable, BPMNProcessInfo processInfo)
-
-
-
Method Detail
-
findByCsrAndCert
@Query(name="AuditTrace.findByCsrAndCert") List<AuditTrace> findByCsrAndCert(@Param("certificate") Certificate certificate, @Param("csr") CSR csr)
-
findByCsrAndCert
@Query(name="AuditTrace.findByCsrAndCert") org.springframework.data.domain.Page<AuditTrace> findByCsrAndCert(org.springframework.data.domain.Pageable pageable, @Param("certificate") Certificate certificate, @Param("csr") CSR csr)
-
findByCsr
@Query(name="AuditTrace.findByCsr") org.springframework.data.domain.Page<AuditTrace> findByCsr(org.springframework.data.domain.Pageable pageable, @Param("csr") CSR csr)
-
findByPipeline
@Query(name="AuditTrace.findByPipeline") org.springframework.data.domain.Page<AuditTrace> findByPipeline(org.springframework.data.domain.Pageable pageable, @Param("pipeline") Pipeline pipeline)
-
findByCaConnector
@Query(name="AuditTrace.findByCaConnector") org.springframework.data.domain.Page<AuditTrace> findByCaConnector(org.springframework.data.domain.Pageable pageable, @Param("caConnector") CAConnectorConfig caConnector)
-
findByProcessInfo
@Query(name="AuditTrace.findByProcessInfo") org.springframework.data.domain.Page<AuditTrace> findByProcessInfo(org.springframework.data.domain.Pageable pageable, @Param("processInfo") BPMNProcessInfo processInfo)
-
-