Package org.hawaiiframework.logging.oidc
Enum Class OidcKibanaLogFieldNames
- All Implemented Interfaces:
Serializable,Comparable<OidcKibanaLogFieldNames>,Constable,KibanaLogField
Kibana Log Field Names for OIDC fields.
- Since:
- 3.0.0.M21
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe audience.The authorized party.The subject.The user id. -
Method Summary
Modifier and TypeMethodDescriptionstatic OidcKibanaLogFieldNamesLookup method that does not throw an exception if the specified key is not found.Get the name with which this field will appear in the log.static OidcKibanaLogFieldNamesReturns the enum constant of this class with the specified name.static OidcKibanaLogFieldNames[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfMethods inherited from interface org.hawaiiframework.logging.model.KibanaLogField
matches
-
Enum Constant Details
-
SUBJECT
The subject. -
AUDIENCE
The audience. -
AUTHORIZED_PARTY
The authorized party. -
USER_ID
The user id.
-
-
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
-
getLogName
Description copied from interface:KibanaLogFieldGet the name with which this field will appear in the log.- Specified by:
getLogNamein interfaceKibanaLogField- Returns:
- the log name of the field
-
fromKey
Lookup method that does not throw an exception if the specified key is not found.- Parameters:
key- the key to look for- Returns:
- the KibanaLogField with the given name, or null
-