Interface AuditEventListener

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface AuditEventListener
Callback the library invokes for every auditable event. Default no-op for callers who don't need observability; custom implementations can forward events to systems such as Splunk, Datadog, CloudWatch, or internal audit pipelines.
Since:
0.1.0
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final AuditEventListener
    No-op listener — drops every event.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
     
  • Field Details

    • NOOP

      static final AuditEventListener NOOP
      No-op listener — drops every event. Default for callers who haven't opted in.
  • Method Details