public enum AuthOutcome extends Enum<AuthOutcome>
| Enum Constant and Description | 
|---|
| AUTHENTICATED | 
| FAILED | 
| LOGGED_OUT | 
| NOT_ATTEMPTED | 
| NOT_AUTHENTICATED | 
| Modifier and Type | Method and Description | 
|---|---|
| static AuthOutcome | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static AuthOutcome[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final AuthOutcome NOT_ATTEMPTED
public static final AuthOutcome FAILED
public static final AuthOutcome AUTHENTICATED
public static final AuthOutcome NOT_AUTHENTICATED
public static final AuthOutcome LOGGED_OUT
public static AuthOutcome[] values()
for (AuthOutcome c : AuthOutcome.values()) System.out.println(c);
public static AuthOutcome 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 © 2016 JBoss by Red Hat. All rights reserved.