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 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)