Uses of Class
org.saidone.model.dto.AuditEntryDto
Packages that use AuditEntryDto
-
Uses of AuditEntryDto in org.saidone.controller
Methods in org.saidone.controller that return types with arguments of type AuditEntryDtoModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<List<AuditEntryDto>> 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 AuditEntryDto in org.saidone.model.mapper
Methods in org.saidone.model.mapper that return AuditEntryDtoModifier and TypeMethodDescriptionAuditEntryMapper.toDto(AuditEntryEntity entity) AuditEntryMapperImpl.toDto(AuditEntryEntity entity) Methods in org.saidone.model.mapper that return types with arguments of type AuditEntryDtoModifier and TypeMethodDescriptionAuditEntryMapper.toDtoList(List<AuditEntryEntity> entities) AuditEntryMapperImpl.toDtoList(List<AuditEntryEntity> entities) Methods in org.saidone.model.mapper with parameters of type AuditEntryDtoModifier and TypeMethodDescriptionAuditEntryMapper.toEntity(AuditEntryDto dto) AuditEntryMapperImpl.toEntity(AuditEntryDto dto) -
Uses of AuditEntryDto in org.saidone.service.audit
Methods in org.saidone.service.audit that return AuditEntryDtoModifier and TypeMethodDescriptionstatic AuditEntryDtoAuditWebFilter.createRequestAuditEntry(org.springframework.http.server.reactive.ServerHttpRequest request) Build an audit entry representing an incoming HTTP request.static AuditEntryDtoAuditWebFilter.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 AuditEntryDtoModifier 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 AuditEntryDtoModifier and TypeMethodDescriptionvoidAuditService.saveEntry(AuditEntryDto auditEntry) Persist the provided audit entry.voidAuditServiceImpl.saveEntry(AuditEntryDto auditEntry) Persist the provided audit entry in MongoDB.