Uses of Class
org.wildfly.security.auth.server.event.SecurityEvent
-
Packages that use SecurityEvent Package Description org.wildfly.security.audit Audit logging related resources.org.wildfly.security.auth.server Server side of authentication provided by Elytron.org.wildfly.security.auth.server.event -
-
Uses of SecurityEvent in org.wildfly.security.audit
Fields in org.wildfly.security.audit with type parameters of type SecurityEvent Modifier and Type Field Description private Function<SecurityEvent,String>
AuditLogger.Builder. messageFormatter
private Function<SecurityEvent,String>
AuditLogger. messageFormatter
private Function<SecurityEvent,EventPriority>
AuditLogger.Builder. priorityMapper
private Function<SecurityEvent,EventPriority>
AuditLogger. priorityMapper
Methods in org.wildfly.security.audit that return types with arguments of type SecurityEvent Modifier and Type Method Description Consumer<SecurityEvent>
AuditLogger.Builder. build()
Construct a new audit logger instance.Methods in org.wildfly.security.audit with parameters of type SecurityEvent Modifier and Type Method Description void
AuditLogger. accept(SecurityEvent event)
Accept security event to be processed by audit endpoints.private void
JsonSecurityEventFormatter. handleUnknownEvent(SecurityEvent event, jakarta.json.JsonObjectBuilder objectBuilder)
String
JsonSecurityEventFormatter. handleUnknownEvent(SecurityEvent event, Void param)
private void
SimpleSecurityEventFormatter. handleUnknownEvent(SecurityEvent event, StringBuilder stringBuilder)
String
SimpleSecurityEventFormatter. handleUnknownEvent(SecurityEvent event, Void param)
Method parameters in org.wildfly.security.audit with type arguments of type SecurityEvent Modifier and Type Method Description AuditLogger.Builder
AuditLogger.Builder. setMessageFormatter(Function<SecurityEvent,String> messageFormatter)
Set the message formatter to convert the messages to formatted Strings.AuditLogger.Builder
AuditLogger.Builder. setPriorityMapper(Function<SecurityEvent,EventPriority> priorityMapper)
Set the priority mapper to assign a priority to the messages. -
Uses of SecurityEvent in org.wildfly.security.auth.server
Fields in org.wildfly.security.auth.server with type parameters of type SecurityEvent Modifier and Type Field Description private Consumer<SecurityEvent>
SecurityDomain.Builder. securityEventListener
private Consumer<SecurityEvent>
SecurityDomain. securityEventListener
Methods in org.wildfly.security.auth.server with parameters of type SecurityEvent Modifier and Type Method Description void
SecurityDomain. handleSecurityEvent(SecurityEvent securityEvent)
Handle aSecurityEvent
.(package private) static void
SecurityDomain. safeHandleSecurityEvent(SecurityDomain domain, SecurityEvent event)
Method parameters in org.wildfly.security.auth.server with type arguments of type SecurityEvent Modifier and Type Method Description SecurityDomain.Builder
SecurityDomain.Builder. setSecurityEventListener(Consumer<SecurityEvent> securityEventListener)
Set the security event listener that will consume allSecurityEvent
instances emitted but the domain. -
Uses of SecurityEvent in org.wildfly.security.auth.server.event
Subclasses of SecurityEvent in org.wildfly.security.auth.server.event Modifier and Type Class Description class
Rfc3164SyslogEvent
A security audit event indicating that a log with RFC 3164 syslog format is occurringclass
Rfc5424SyslogEvent
A security audit event indicating that a log with RFC 3164 syslog format is occurringclass
SecurityAuthenticationEvent
A security authentication event.class
SecurityAuthenticationFailedEvent
An event to represent a failed authentication.class
SecurityAuthenticationSuccessfulEvent
An event to represent a successful authentication.class
SecurityDefiniteOutcomeEvent
ASecurityEvent
that has a definite outcome of being successful or not.class
SecurityPermissionCheckEvent
A security event relating to a permission check.class
SecurityPermissionCheckFailedEvent
An event to represent a failed permission check.class
SecurityPermissionCheckSuccessfulEvent
An event to represent a successful permission check.class
SecurityRealmUnavailableEvent
A security event signifying unavailable realm.class
SyslogAuditEvent
An abstract class to be extended by specific syslog audit events to be handled.Methods in org.wildfly.security.auth.server.event with parameters of type SecurityEvent Modifier and Type Method Description R
SecurityEventVisitor. handleUnknownEvent(SecurityEvent event, P param)
Handle any unhandled security event.
-