Enum Class OTelBuildConfig.SecurityEvents.SecurityEventType
java.lang.Object
java.lang.Enum<OTelBuildConfig.SecurityEvents.SecurityEventType>
io.quarkus.opentelemetry.runtime.config.build.OTelBuildConfig.SecurityEvents.SecurityEventType
- All Implemented Interfaces:
Serializable,Comparable<OTelBuildConfig.SecurityEvents.SecurityEventType>,Constable
- Enclosing interface:
OTelBuildConfig.SecurityEvents
public static enum OTelBuildConfig.SecurityEvents.SecurityEventType
extends Enum<OTelBuildConfig.SecurityEvents.SecurityEventType>
Security event type.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAll the security events.Authentication failure event.Authentication success event.Authorization failure event.Authorization success event.Any other security event. -
Method Summary
Modifier and TypeMethodDescriptionClass<? extends SecurityEvent> Returns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ALL
All the security events. -
AUTHENTICATION_SUCCESS
Authentication success event. -
AUTHENTICATION_FAILURE
Authentication failure event. -
AUTHORIZATION_SUCCESS
Authorization success event. -
AUTHORIZATION_FAILURE
Authorization failure event. -
OTHER
Any other security event. For example the OpenId Connect security event belongs here.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
getObservedType
-