Class AuditEventService


  • @Service
    @Transactional
    public class AuditEventService
    extends Object
    Service for managing audit events.

    This is the default implementation to support SpringBoot Actuator AuditEventRepository

    • Method Detail

      • findAll

        public org.springframework.data.domain.Page<org.springframework.boot.actuate.audit.AuditEvent> findAll​(org.springframework.data.domain.Pageable pageable)
      • findByDates

        public org.springframework.data.domain.Page<org.springframework.boot.actuate.audit.AuditEvent> findByDates​(LocalDateTime fromDate,
                                                                                                                   LocalDateTime toDate,
                                                                                                                   org.springframework.data.domain.Pageable pageable)
      • find

        public Optional<org.springframework.boot.actuate.audit.AuditEvent> find​(Long id)