public enum ActionPasswordConfirmationStatus extends java.lang.Enum<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 EnumMessageKeyResolver<ActionPasswordConfirmationStatus> |
resolverForActionConfirmation()
Returns an
EnumMessageKeyResolver for translation keys used to confirm the action |
static EnumMessageKeyResolver<ActionPasswordConfirmationStatus> |
resolverForReceiveConfirmation()
Returns an
EnumMessageKeyResolver for translation keys used to confirm the receiving |
static ActionPasswordConfirmationStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ActionPasswordConfirmationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionPasswordConfirmationStatus NOT_ACTIVE_RENEWABLE_PASSWORD_NOT_ALLOWED_MEDIUMS
public static final ActionPasswordConfirmationStatus NOT_ACTIVE_RENEWABLE_PASSWORD
public static final ActionPasswordConfirmationStatus NOT_ACTIVE_PASSWORD
public static final ActionPasswordConfirmationStatus ACTIVE_RENEWABLE_PASSWORD_NOT_ALLOWED_MEDIUMS
public static final ActionPasswordConfirmationStatus ACTIVE_RENEWABLE_PASSWORD
public static final ActionPasswordConfirmationStatus ACTIVE_PASSWORD
public static ActionPasswordConfirmationStatus[] values()
for (ActionPasswordConfirmationStatus c : ActionPasswordConfirmationStatus.values()) System.out.println(c);
public static 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 nullpublic static EnumMessageKeyResolver<ActionPasswordConfirmationStatus> resolverForActionConfirmation()
EnumMessageKeyResolver for translation keys used to confirm the actionpublic static EnumMessageKeyResolver<ActionPasswordConfirmationStatus> resolverForReceiveConfirmation()
EnumMessageKeyResolver for translation keys used to confirm the receiving