io.sdsolutions.particle.audit.service.AuditLogWriterService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of audit Show documentation
Show all versions of audit Show documentation
Audit Abstraction for Particle
The newest version!
package io.sdsolutions.particle.audit.service;
import io.sdsolutions.particle.audit.model.AuditEventDTO;
import java.util.List;
public interface AuditLogWriterService {
void writeAuditLogs(List events);
}