Interface AuditTraceService

    • Method Detail

      • save

        AuditTrace save​(AuditTrace auditTrace)
        Save a auditTrace.
        Parameters:
        auditTrace - the entity to save.
        Returns:
        the persisted entity.
      • findAll

        org.springframework.data.domain.Page<AuditTrace> findAll​(org.springframework.data.domain.Pageable pageable)
        Get all the auditTraces.
        Returns:
        the list of entities.
      • findOne

        Optional<AuditTrace> findOne​(Long id)
        Get the "id" auditTrace.
        Parameters:
        id - the id of the entity.
        Returns:
        the entity.
      • delete

        void delete​(Long id)
        Delete the "id" auditTrace.
        Parameters:
        id - the id of the entity.
      • findBy

        org.springframework.data.domain.Page<AuditTrace> findBy​(org.springframework.data.domain.Pageable pageable,
                                                                Long certificateId,
                                                                Long csrId,
                                                                Long pipelineId,
                                                                Long caConnectorId,
                                                                Long processInfoId,
                                                                Long acmeOrderId)