Uses of Class
org.saidone.service.audit.AuditEntry
Packages that use AuditEntry
-
Uses of AuditEntry in org.saidone.controller
Methods in org.saidone.controller that return types with arguments of type AuditEntryModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity
<List<AuditEntry>> AuditApiController.getEntries
(String auth, String type, Instant from, Instant to, int page, int size) Retrieves audit entries optionally filtered by type and timestamp range. -
Uses of AuditEntry in org.saidone.service.audit
Methods in org.saidone.service.audit that return AuditEntryModifier and TypeMethodDescriptionstatic AuditEntry
AuditWebFilter.createRequestAuditEntry
(org.springframework.http.server.reactive.ServerHttpRequest request) Build an audit entry representing an incoming HTTP request.static AuditEntry
AuditWebFilter.createResponseAuditEntry
(String id, org.springframework.http.server.reactive.ServerHttpResponse response) Build an audit entry representing an HTTP response.Methods in org.saidone.service.audit that return types with arguments of type AuditEntryModifier and TypeMethodDescriptionAuditService.findEntries
(String type, Instant from, Instant to, org.springframework.data.domain.Pageable pageable) Retrieve stored audit entries.AuditServiceImpl.findEntries
(String type, Instant from, Instant to, org.springframework.data.domain.Pageable pageable) Retrieve audit entries filtered by type and timestamp.Methods in org.saidone.service.audit with parameters of type AuditEntryModifier and TypeMethodDescriptionvoid
AuditService.saveEntry
(AuditEntry auditEntry) Persist the provided audit entry.void
AuditServiceImpl.saveEntry
(AuditEntry auditEntry) Persist the provided audit entry in MongoDB.