public enum FlowStatus extends Enum<FlowStatus>
Enum Constant and Description |
---|
ATTEMPTED
This is not an error condition.
|
CHALLENGE
Execution offered a challenge.
|
FAILED
Flow will be aborted.
|
FAILURE_CHALLENGE
Flow will be aborted and a Response provided by the execution will be sent.
|
FLOW_RESET
This flow was reset to the beginning.
|
FORCE_CHALLENGE
Irregardless of the execution's requirement, this challenge will be sent to the user.
|
FORK
This flow is being forked.
|
SUCCESS
Successful execution
|
Modifier and Type | Method and Description |
---|---|
static FlowStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlowStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlowStatus SUCCESS
public static final FlowStatus CHALLENGE
public static final FlowStatus FORCE_CHALLENGE
public static final FlowStatus FAILURE_CHALLENGE
public static final FlowStatus FAILED
public static final FlowStatus ATTEMPTED
public static final FlowStatus FORK
public static final FlowStatus FLOW_RESET
public static FlowStatus[] values()
for (FlowStatus c : FlowStatus.values()) System.out.println(c);
public static FlowStatus 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 © 2021 JBoss by Red Hat. All rights reserved.