public static enum ScramServerFunctionality.State extends Enum<ScramServerFunctionality.State>
| Enum Constant and Description |
|---|
ENDED
Authentication is completes, either successfully or not
|
FIRST_CLIENT_MESSAGE_HANDLED
First client message is handled (username is extracted)
|
INITIAL
Initial state
|
PREPARED_FIRST
First server message is prepared
|
| Modifier and Type | Method and Description |
|---|---|
static ScramServerFunctionality.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScramServerFunctionality.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScramServerFunctionality.State INITIAL
public static final ScramServerFunctionality.State FIRST_CLIENT_MESSAGE_HANDLED
public static final ScramServerFunctionality.State PREPARED_FIRST
public static final ScramServerFunctionality.State ENDED
public static ScramServerFunctionality.State[] values()
for (ScramServerFunctionality.State c : ScramServerFunctionality.State.values()) System.out.println(c);
public static ScramServerFunctionality.State 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 The Apache Software Foundation. All rights reserved.