Package de.trustable.ca3s.core.service
Interface AuditTraceService
-
- All Known Implementing Classes:
AuditTraceServiceImpl
public interface AuditTraceServiceService Interface for managingAuditTrace.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete(Long id)Delete the "id" auditTrace.org.springframework.data.domain.Page<AuditTrace>findAll(org.springframework.data.domain.Pageable pageable)Get all the auditTraces.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)Optional<AuditTrace>findOne(Long id)Get the "id" auditTrace.AuditTracesave(AuditTrace auditTrace)Save a auditTrace.
-
-
-
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.
-
-