public static enum ClientAuthnDTO.ReauthnType extends Enum<ClientAuthnDTO.ReauthnType>
| Enum Constant and Description |
|---|
FEDERATED |
FEDERATED_MFA |
MFA |
USERNAME_PASSWORD |
| Modifier and Type | Method and Description |
|---|---|
static ClientAuthnDTO.ReauthnType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClientAuthnDTO.ReauthnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClientAuthnDTO.ReauthnType USERNAME_PASSWORD
public static final ClientAuthnDTO.ReauthnType MFA
public static final ClientAuthnDTO.ReauthnType FEDERATED
public static final ClientAuthnDTO.ReauthnType FEDERATED_MFA
public static ClientAuthnDTO.ReauthnType[] values()
for (ClientAuthnDTO.ReauthnType c : ClientAuthnDTO.ReauthnType.values()) System.out.println(c);
public static ClientAuthnDTO.ReauthnType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All rights reserved.