-
- All Known Subinterfaces:
AuditProvider.TracedAuditEvent
public interface AuditEvent
An audit event to store using an Audit provider. You should provide your own implementation class.- See Also:
SecurityContext.audit(AuditEvent)
,AuditProvider
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
AuditEvent.AuditParam
Named parameters of audit event.static class
AuditEvent.AuditSeverity
Severity ofAuditEvent
.
-
Field Summary
Fields Modifier and Type Field Description static String
AUDIT_TYPE_PREFIX
Reserved event type prefix for audit events.static String
AUTHN_TYPE_PREFIX
Reserved event type prefix for authentication events.static String
AUTHZ_TYPE_PREFIX
Reserved event type prefix for authorization events.static String
OUTBOUND_TYPE_PREFIX
Reserved event type prefix for outbound security (such as identity propagation) events.static String
SECURITY_TYPE_PREFIX
Reserved event type prefix for security component.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
eventType()
Gets the type of thisAuditEvent
.String
messageFormat()
Gets the message format of thisAuditEvent
to be used withString.format(String, Object...)
.List<AuditEvent.AuditParam>
params()
Parameters of this audit event, used inString.format(String, Object...)
when creating the audit message.AuditEvent.AuditSeverity
severity()
Gets the severity of thisAuditEvent
.Optional<Throwable>
throwable()
Gets anThrowable
object from which additional audit information can be obtained.
-
-
-
Field Detail
-
SECURITY_TYPE_PREFIX
static final String SECURITY_TYPE_PREFIX
Reserved event type prefix for security component.- See Also:
- Constant Field Values
-
AUTHN_TYPE_PREFIX
static final String AUTHN_TYPE_PREFIX
Reserved event type prefix for authentication events. You may trigger such audit events (e.g. when writing an authentication provider, or from app), yet they MUST be related to authentication.- See Also:
- Constant Field Values
-
AUTHZ_TYPE_PREFIX
static final String AUTHZ_TYPE_PREFIX
Reserved event type prefix for authorization events. You may trigger such audit events (e.g. when writing an authorization provider, or from app), yet they MUST be related to authorization.- See Also:
- Constant Field Values
-
OUTBOUND_TYPE_PREFIX
static final String OUTBOUND_TYPE_PREFIX
Reserved event type prefix for outbound security (such as identity propagation) events. You may trigger such audit events (e.g. when writing an identity propagation provider, or from app), yet they MUST be related to identity propagation.- See Also:
- Constant Field Values
-
AUDIT_TYPE_PREFIX
static final String AUDIT_TYPE_PREFIX
Reserved event type prefix for audit events. You may trigger such events ONLY when writing audit providers.- See Also:
- Constant Field Values
-
-
Method Detail
-
eventType
String eventType()
Gets the type of thisAuditEvent
.- Returns:
- the type of this
AuditEvent
represented as String.
-
throwable
Optional<Throwable> throwable()
Gets anThrowable
object from which additional audit information can be obtained.- Returns:
- an
Throwable
with additional information if available.
-
params
List<AuditEvent.AuditParam> params()
Parameters of this audit event, used inString.format(String, Object...)
when creating the audit message.- Returns:
- parameters of this audit message
-
messageFormat
String messageFormat()
Gets the message format of thisAuditEvent
to be used withString.format(String, Object...)
.- Returns:
- English message format (this is a fallback if internationalization is not configured).
-
severity
AuditEvent.AuditSeverity severity()
Gets the severity of thisAuditEvent
.- Returns:
- severity
-
-