Package org.forgerock.am.trees.api
Enum Class Outcome
- All Implemented Interfaces:
Serializable
,Comparable<Outcome>
,java.lang.constant.Constable
The possible outcomes of trees and nodes.
- Since:
- AM 5.5.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionTree results in an exception state.Tree results in a negative state.Tree requires input from the user.Tree authentication flow has been suspended.Tree results in a positive state. -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic Outcome
getFromNodeID
(UUID nodeId) Return the Outcome from the uuid.static Outcome
Returns the enum constant of this class with the specified name.static Outcome[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TRUE
Tree results in a positive state. -
FALSE
Tree results in a negative state. -
NEED_INPUT
Tree requires input from the user. -
SUSPENDED
Tree authentication flow has been suspended. -
EXCEPTION
Tree results in an exception state.
-
-
Field Details
-
TREE_NODE_SUCCESS_ID
The ID of every tree's success node. -
TREE_NODE_FAILURE_ID
The ID of every tree's failure node.
-
-
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
-
getFromNodeID
Return the Outcome from the uuid.
-