Uses of Class
org.wildfly.security.auth.client.CallbackKind
-
Packages that use CallbackKind Package Description org.wildfly.security.auth.client Elytron Client enable remote clients to authenticate using Elytron. -
-
Uses of CallbackKind in org.wildfly.security.auth.client
Fields in org.wildfly.security.auth.client with type parameters of type CallbackKind Modifier and Type Field Description private static EnumSet<CallbackKind>
AuthenticationConfiguration. NO_CALLBACK_KINDS
(package private) EnumSet<CallbackKind>
AuthenticationConfiguration. userCallbackKinds
Methods in org.wildfly.security.auth.client that return CallbackKind Modifier and Type Method Description static CallbackKind
CallbackKind. valueOf(String name)
Returns the enum constant of this type with the specified name.static CallbackKind[]
CallbackKind. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.wildfly.security.auth.client that return types with arguments of type CallbackKind Modifier and Type Method Description (package private) EnumSet<CallbackKind>
AuthenticationConfiguration. getUserCallbackKinds()
Methods in org.wildfly.security.auth.client with parameters of type CallbackKind Modifier and Type Method Description boolean
CallbackKind. in(CallbackKind v1)
Determine whether this instance is equal to one of the given instances.boolean
CallbackKind. in(CallbackKind... values)
Determine whether this instance is equal to one of the given instances.boolean
CallbackKind. in(CallbackKind v1, CallbackKind v2)
Determine whether this instance is equal to one of the given instances.boolean
CallbackKind. in(CallbackKind v1, CallbackKind v2, CallbackKind v3)
Determine whether this instance is equal to one of the given instances.Method parameters in org.wildfly.security.auth.client with type arguments of type CallbackKind Modifier and Type Method Description static boolean
CallbackKind. isFull(EnumSet<CallbackKind> set)
Determine whether the given set is fully populated (or "full"), meaning it contains all possible values.AuthenticationConfiguration
AuthenticationConfiguration. useCallbackHandler(CallbackHandler callbackHandler, Set<CallbackKind> callbackKinds)
Create a new configuration which is the same as this configuration, but which uses the given callback handler to authenticate.
-