Interface IAuditService
public interface IAuditService
Interface for the audit service that handles logging of actions performed on certificates and keystores.
- Since:
- 8.5.0
-
Method Summary
Modifier and TypeMethodDescription<TEntity extends IAuditableEntity>
voidcreateAuditEntry(IAuditAction<TEntity> action, TEntity entity, CertificateManagementUser user, AuditParameter... params) Creates an audit entry for the specified action.
-
Method Details
-
createAuditEntry
<TEntity extends IAuditableEntity> void createAuditEntry(IAuditAction<TEntity> action, TEntity entity, CertificateManagementUser user, AuditParameter... params) Creates an audit entry for the specified action.- Parameters:
action- The action to log.entity- The entity being audited.user- The user who performed the action.params- Optional parameters for additional context.
-