Enum InteractiveAuthenticationProcessor.PostAuthenticationStepDecision.Decision
- java.lang.Object
-
- java.lang.Enum<InteractiveAuthenticationProcessor.PostAuthenticationStepDecision.Decision>
-
- pl.edu.icm.unity.engine.api.authn.InteractiveAuthenticationProcessor.PostAuthenticationStepDecision.Decision
-
- All Implemented Interfaces:
Serializable
,Comparable<InteractiveAuthenticationProcessor.PostAuthenticationStepDecision.Decision>
- Enclosing class:
- InteractiveAuthenticationProcessor.PostAuthenticationStepDecision
public static enum InteractiveAuthenticationProcessor.PostAuthenticationStepDecision.Decision extends Enum<InteractiveAuthenticationProcessor.PostAuthenticationStepDecision.Decision>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPLETED
ERROR
GO_TO_2ND_FACTOR
UNKNOWN_REMOTE_USER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static InteractiveAuthenticationProcessor.PostAuthenticationStepDecision.Decision
valueOf(String name)
Returns the enum constant of this type with the specified name.static InteractiveAuthenticationProcessor.PostAuthenticationStepDecision.Decision[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMPLETED
public static final InteractiveAuthenticationProcessor.PostAuthenticationStepDecision.Decision COMPLETED
-
GO_TO_2ND_FACTOR
public static final InteractiveAuthenticationProcessor.PostAuthenticationStepDecision.Decision GO_TO_2ND_FACTOR
-
ERROR
public static final InteractiveAuthenticationProcessor.PostAuthenticationStepDecision.Decision ERROR
-
UNKNOWN_REMOTE_USER
public static final InteractiveAuthenticationProcessor.PostAuthenticationStepDecision.Decision UNKNOWN_REMOTE_USER
-
-
Method Detail
-
values
public static InteractiveAuthenticationProcessor.PostAuthenticationStepDecision.Decision[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (InteractiveAuthenticationProcessor.PostAuthenticationStepDecision.Decision c : InteractiveAuthenticationProcessor.PostAuthenticationStepDecision.Decision.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InteractiveAuthenticationProcessor.PostAuthenticationStepDecision.Decision valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
-