Package org.forgerock.am.iot
Enum Class IotAuthenticationNode.JwtAuthenticationMethod
java.lang.Object
java.lang.Enum<IotAuthenticationNode.JwtAuthenticationMethod>
org.forgerock.am.iot.IotAuthenticationNode.JwtAuthenticationMethod
- All Implemented Interfaces:
Serializable
,Comparable<IotAuthenticationNode.JwtAuthenticationMethod>
,java.lang.constant.Constable
- Enclosing class:
- IotAuthenticationNode
public static enum IotAuthenticationNode.JwtAuthenticationMethod
extends Enum<IotAuthenticationNode.JwtAuthenticationMethod>
The JWT authentication method used to verify the JWT presented for authentication.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionPresent a JWT Bearer token for authentication.Prove that the signer of the JWT is the owner of the key by including a challenge nonce in the JWT. -
Method Summary
Modifier and TypeMethodDescriptionReturns 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
-
PROOF_OF_POSSESSION
Prove that the signer of the JWT is the owner of the key by including a challenge nonce in the JWT. Validation will be done in accordance with the JWT Proof of Possession specification -
CLIENT_ASSERTION
Present a JWT Bearer token for authentication. Validation will be done in accordance with the OAuth 2.0 JWT Profile for Client Authentication.
-
-
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
-