Serializable, Comparable<BasicAuthResponse>public enum BasicAuthResponse extends Enum<BasicAuthResponse>
BasicAuthObserver to signal the status of a Basic-Auth evaluation.| Enum Constant | Description |
|---|---|
BASIC_AUTH_FAILURE |
Basic-Auth was considered having failed.
|
BASIC_AUTH_REQUIRED |
Basic-Auth was considered to be required.
|
BASIC_AUTH_SKIP |
Basic-Auth was considered being irrelevant.
|
BASIC_AUTH_SUCCESS |
Basic-Auth was considered being successful.
|
| Modifier and Type | Method | Description |
|---|---|---|
static BasicAuthResponse |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static BasicAuthResponse[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BasicAuthResponse BASIC_AUTH_SUCCESS
public static final BasicAuthResponse BASIC_AUTH_FAILURE
public static final BasicAuthResponse BASIC_AUTH_REQUIRED
public static final BasicAuthResponse BASIC_AUTH_SKIP
public static BasicAuthResponse[] values()
for (BasicAuthResponse c : BasicAuthResponse.values()) System.out.println(c);
public static BasicAuthResponse 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 © 2018. All rights reserved.