Package org.wildfly.security.mechanism
Enum Class ScramServerErrorCode
- All Implemented Interfaces:
Serializable,Comparable<ScramServerErrorCode>,Constable
This enum lists server error codes for SCRAM authentication mechanism.
- Author:
- David M. Lloyd
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionstatic ScramServerErrorCodefromErrorString(String value) Convert the error string to the respectiveScramServerErrorCodeenum value, or to theOTHER_ERRORvalue if can't match.byte[]Returns the copy of the byte array representing the error message.getText()Returns the String representation of the error code.booleanDetermine whether this instance is equal to one of the given instances.booleanin(ScramServerErrorCode... values) Determine whether this instance is equal to one of the given instances.booleanDetermine whether this instance is equal to one of the given instances.booleanDetermine whether this instance is equal to one of the given instances.static booleanDetermine whether the given set is fully populated (or "full"), meaning it contains all possible values.static ScramServerErrorCodeReturns the enum constant of this class with the specified name.static ScramServerErrorCode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INVALID_ENCODING
-
EXTENSIONS_NOT_SUPPORTED
-
INVALID_PROOF
-
CHANNEL_BINDINGS_DONT_MATCH
-
SERVER_DOES_NOT_SUPPORT_CHANNEL_BINDING
-
SERVER_DOES_SUPPORT_CHANNEL_BINDING
-
CHANNEL_BINDING_NOT_SUPPORTED
-
CHANNEL_BINDING_NOT_PROVIDED
-
UNSUPPORTED_CHANNEL_BINDING_TYPE
-
UNKNOWN_USER
-
INVALID_USERNAME_ENCODING
-
NO_RESOURCES
-
OTHER_ERROR
-
-
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
-
getText
Returns the String representation of the error code.- Returns:
- String representation of the error code.
-
getMessageBytes
public byte[] getMessageBytes()Returns the copy of the byte array representing the error message.- Returns:
- copy of the byte array representing the error message.
-
fromErrorString
Convert the error string to the respectiveScramServerErrorCodeenum value, or to theOTHER_ERRORvalue if can't match.- Parameters:
value- the error value as string- Returns:
- the respective
ScramServerErrorCodeenum value from error string,OTHER_ERRORotherwise
-
isFull
Determine whether the given set is fully populated (or "full"), meaning it contains all possible values.- Parameters:
set- the set- Returns:
trueif the set is full,falseotherwise
-
in
Determine whether this instance is equal to one of the given instances.- Parameters:
v1- the first instance- Returns:
trueif one of the instances matches this one,falseotherwise
-
in
Determine whether this instance is equal to one of the given instances.- Parameters:
v1- the first instancev2- the second instance- Returns:
trueif one of the instances matches this one,falseotherwise
-
in
Determine whether this instance is equal to one of the given instances.- Parameters:
v1- the first instancev2- the second instancev3- the third instance- Returns:
trueif one of the instances matches this one,falseotherwise
-
in
Determine whether this instance is equal to one of the given instances.- Parameters:
values- the possible values- Returns:
trueif one of the instances matches this one,falseotherwise
-