public static enum ActionConfirmationHelper.ActionPasswordConfirmationStatus extends java.lang.Enum<ActionConfirmationHelper.ActionPasswordConfirmationStatus>
| Enum Constant and Description |
|---|
ACTIVE_PASSWORD
The user has an active password and can confirm the action.
|
ACTIVE_RENEWABLE_PASSWORD
The user has an active password and can confirm with it or request a new one through one of the allowed mediums.
|
ACTIVE_RENEWABLE_PASSWORD_NOT_ALLOWED_MEDIUMS
The user has an active password and must confirm with it because he can't request a new one because doesn't have any allowed medium.
|
NOT_ACTIVE_PASSWORD
The user doesn't have an active password then he can't confirm the action because it's not a renewable one.
|
NOT_ACTIVE_RENEWABLE_PASSWORD
The user doesn't have an active renewable but has at least one allowed medium to request through it a new OTP.
|
NOT_ACTIVE_RENEWABLE_PASSWORD_NOT_ALLOWED_MEDIUMS
The user doesn't have an active renewable and can't request a new one because he doesn't have any allowed medium to request through.
|
| Modifier and Type | Method and Description |
|---|---|
static ActionConfirmationHelper.ActionPasswordConfirmationStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ActionConfirmationHelper.ActionPasswordConfirmationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionConfirmationHelper.ActionPasswordConfirmationStatus NOT_ACTIVE_RENEWABLE_PASSWORD_NOT_ALLOWED_MEDIUMS
public static final ActionConfirmationHelper.ActionPasswordConfirmationStatus NOT_ACTIVE_RENEWABLE_PASSWORD
public static final ActionConfirmationHelper.ActionPasswordConfirmationStatus NOT_ACTIVE_PASSWORD
public static final ActionConfirmationHelper.ActionPasswordConfirmationStatus ACTIVE_RENEWABLE_PASSWORD_NOT_ALLOWED_MEDIUMS
public static final ActionConfirmationHelper.ActionPasswordConfirmationStatus ACTIVE_RENEWABLE_PASSWORD
public static final ActionConfirmationHelper.ActionPasswordConfirmationStatus ACTIVE_PASSWORD
public static ActionConfirmationHelper.ActionPasswordConfirmationStatus[] values()
for (ActionConfirmationHelper.ActionPasswordConfirmationStatus c : ActionConfirmationHelper.ActionPasswordConfirmationStatus.values()) System.out.println(c);
public static ActionConfirmationHelper.ActionPasswordConfirmationStatus valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null