Package org.wildfly.security.auth.client
Enum CallbackKind
- java.lang.Object
-
- java.lang.Enum<CallbackKind>
-
- org.wildfly.security.auth.client.CallbackKind
-
- All Implemented Interfaces:
Serializable,Comparable<CallbackKind>
public enum CallbackKind extends Enum<CallbackKind>
The kinds of callbacks which can be handled by the user's callback.- Author:
- David M. Lloyd
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHANNEL_BINDINGCallbacks which configure channel binding options:ChannelBindingCallbackCHOICECallbacks which extendChoiceCallback(not includingRealmChoiceCallback).CREDENTIALCallbacks which select a credential to use for authentication:PasswordCallbackandCredentialCallbackCREDENTIAL_RESETCallbacks which handle local credential-reset requests:PasswordResetCallbackGENERAL_INPUTCallbacks which provide general input:TextInputCallbackGENERAL_OUTPUTCallbacks which provide general output:TextOutputCallbackPARAMETERSCallbacks which select algorithm parameters to use for authentication:ParameterCallbackPEER_CREDENTIALCallbacks which handle or verify the peer's credentials:EvidenceVerifyCallbackPEER_PRINCIPALCallbacks which accept the peer's name or principal: server sideNameCallbackPRINCIPALCallbacks which select a user name or principal: client sideNameCallbackREALMCallbacks which select the mechanism realm:RealmChoiceCallbackandRealmCallbackSERVER_TRUSTED_AUTHORITIESCallbacks which accept the server's trusted authorities:TrustedAuthoritiesCallbackSSLCallbacks which deal with SSL configuration:SSLCallback
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanin(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 CallbackKindvalueOf(String name)Returns 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 Detail
-
PRINCIPAL
public static final CallbackKind PRINCIPAL
Callbacks which select a user name or principal: client sideNameCallback
-
CREDENTIAL
public static final CallbackKind CREDENTIAL
Callbacks which select a credential to use for authentication:PasswordCallbackandCredentialCallback
-
CREDENTIAL_RESET
public static final CallbackKind CREDENTIAL_RESET
Callbacks which handle local credential-reset requests:PasswordResetCallback
-
REALM
public static final CallbackKind REALM
Callbacks which select the mechanism realm:RealmChoiceCallbackandRealmCallback
-
PEER_PRINCIPAL
public static final CallbackKind PEER_PRINCIPAL
Callbacks which accept the peer's name or principal: server sideNameCallback
-
PEER_CREDENTIAL
public static final CallbackKind PEER_CREDENTIAL
Callbacks which handle or verify the peer's credentials:EvidenceVerifyCallback
-
CHOICE
public static final CallbackKind CHOICE
Callbacks which extendChoiceCallback(not includingRealmChoiceCallback).
-
PARAMETERS
public static final CallbackKind PARAMETERS
Callbacks which select algorithm parameters to use for authentication:ParameterCallback
-
SERVER_TRUSTED_AUTHORITIES
public static final CallbackKind SERVER_TRUSTED_AUTHORITIES
Callbacks which accept the server's trusted authorities:TrustedAuthoritiesCallback
-
GENERAL_OUTPUT
public static final CallbackKind GENERAL_OUTPUT
Callbacks which provide general output:TextOutputCallback
-
GENERAL_INPUT
public static final CallbackKind GENERAL_INPUT
Callbacks which provide general input:TextInputCallback
-
SSL
public static final CallbackKind SSL
Callbacks which deal with SSL configuration:SSLCallback
-
CHANNEL_BINDING
public static final CallbackKind CHANNEL_BINDING
Callbacks which configure channel binding options:ChannelBindingCallback
-
-
Method Detail
-
values
public static CallbackKind[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CallbackKind c : CallbackKind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CallbackKind valueOf(String name)
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
public static boolean isFull(EnumSet<CallbackKind> set)
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
public boolean in(CallbackKind v1)
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
public boolean in(CallbackKind v1, CallbackKind v2)
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
public boolean in(CallbackKind v1, CallbackKind v2, CallbackKind v3)
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
public boolean in(CallbackKind... values)
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
-
-