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 SummaryEnum 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 SummaryAll 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- 
PRINCIPALpublic static final CallbackKind PRINCIPAL Callbacks which select a user name or principal: client sideNameCallback
 - 
CREDENTIALpublic static final CallbackKind CREDENTIAL Callbacks which select a credential to use for authentication:PasswordCallbackandCredentialCallback
 - 
CREDENTIAL_RESETpublic static final CallbackKind CREDENTIAL_RESET Callbacks which handle local credential-reset requests:PasswordResetCallback
 - 
REALMpublic static final CallbackKind REALM Callbacks which select the mechanism realm:RealmChoiceCallbackandRealmCallback
 - 
PEER_PRINCIPALpublic static final CallbackKind PEER_PRINCIPAL Callbacks which accept the peer's name or principal: server sideNameCallback
 - 
PEER_CREDENTIALpublic static final CallbackKind PEER_CREDENTIAL Callbacks which handle or verify the peer's credentials:EvidenceVerifyCallback
 - 
CHOICEpublic static final CallbackKind CHOICE Callbacks which extendChoiceCallback(not includingRealmChoiceCallback).
 - 
PARAMETERSpublic static final CallbackKind PARAMETERS Callbacks which select algorithm parameters to use for authentication:ParameterCallback
 - 
SERVER_TRUSTED_AUTHORITIESpublic static final CallbackKind SERVER_TRUSTED_AUTHORITIES Callbacks which accept the server's trusted authorities:TrustedAuthoritiesCallback
 - 
GENERAL_OUTPUTpublic static final CallbackKind GENERAL_OUTPUT Callbacks which provide general output:TextOutputCallback
 - 
GENERAL_INPUTpublic static final CallbackKind GENERAL_INPUT Callbacks which provide general input:TextInputCallback
 - 
SSLpublic static final CallbackKind SSL Callbacks which deal with SSL configuration:SSLCallback
 - 
CHANNEL_BINDINGpublic static final CallbackKind CHANNEL_BINDING Callbacks which configure channel binding options:ChannelBindingCallback
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 - 
isFullpublic 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
 
 - 
inpublic 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
 
 - 
inpublic boolean in(CallbackKind v1, CallbackKind v2) Determine whether this instance is equal to one of the given instances.- Parameters:
- v1- the first instance
- v2- the second instance
- Returns:
- trueif one of the instances matches this one,- falseotherwise
 
 - 
inpublic boolean in(CallbackKind v1, CallbackKind v2, CallbackKind v3) Determine whether this instance is equal to one of the given instances.- Parameters:
- v1- the first instance
- v2- the second instance
- v3- the third instance
- Returns:
- trueif one of the instances matches this one,- falseotherwise
 
 - 
inpublic 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
 
 
- 
 
-