Package org.wildfly.security.auth.client
Enum CallbackKind
- All Implemented Interfaces:
Serializable,Comparable<CallbackKind>
The kinds of callbacks which can be handled by the user's callback.
- Author:
- David M. Lloyd
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCallbacks which configure channel binding options:ChannelBindingCallbackCallbacks which extendChoiceCallback(not includingRealmChoiceCallback).Callbacks which select a credential to use for authentication:PasswordCallbackandCredentialCallbackCallbacks which handle local credential-reset requests:PasswordResetCallbackCallbacks which provide general input:TextInputCallbackCallbacks which provide general output:TextOutputCallbackCallbacks which select algorithm parameters to use for authentication:ParameterCallbackCallbacks which handle or verify the peer's credentials:EvidenceVerifyCallbackCallbacks which accept the peer's name or principal: server sideNameCallbackCallbacks which select a user name or principal: client sideNameCallbackCallbacks which select the mechanism realm:RealmChoiceCallbackandRealmCallbackCallbacks which accept the server's trusted authorities:TrustedAuthoritiesCallbackCallbacks which deal with SSL configuration:SSLCallback -
Method Summary
Modifier and TypeMethodDescriptionbooleanin(CallbackKind v1) Determine whether this instance is equal to one of the given instances.booleanin(CallbackKind... values) Determine whether this instance is equal to one of the given instances.booleanin(CallbackKind v1, CallbackKind v2) Determine whether this instance is equal to one of the given instances.booleanin(CallbackKind v1, CallbackKind v2, CallbackKind v3) Determine whether this instance is equal to one of the given instances.static booleanisFull(EnumSet<CallbackKind> set) Determine whether the given set is fully populated (or "full"), meaning it contains all possible values.static CallbackKindReturns the enum constant of this type with the specified name.static CallbackKind[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
PRINCIPAL
Callbacks which select a user name or principal: client sideNameCallback -
CREDENTIAL
Callbacks which select a credential to use for authentication:PasswordCallbackandCredentialCallback -
CREDENTIAL_RESET
Callbacks which handle local credential-reset requests:PasswordResetCallback -
REALM
Callbacks which select the mechanism realm:RealmChoiceCallbackandRealmCallback -
PEER_PRINCIPAL
Callbacks which accept the peer's name or principal: server sideNameCallback -
PEER_CREDENTIAL
Callbacks which handle or verify the peer's credentials:EvidenceVerifyCallback -
CHOICE
Callbacks which extendChoiceCallback(not includingRealmChoiceCallback). -
PARAMETERS
Callbacks which select algorithm parameters to use for authentication:ParameterCallback -
SERVER_TRUSTED_AUTHORITIES
Callbacks which accept the server's trusted authorities:TrustedAuthoritiesCallback -
GENERAL_OUTPUT
Callbacks which provide general output:TextOutputCallback -
GENERAL_INPUT
Callbacks which provide general input:TextInputCallback -
SSL
Callbacks which deal with SSL configuration:SSLCallback -
CHANNEL_BINDING
Callbacks which configure channel binding options:ChannelBindingCallback
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
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
-