Uses of Interface
javax.security.auth.callback.CallbackHandler Java DOCS
Packages that use CallbackHandler
Package
Description
Provides an implementation of
CallbackHandler.Provides implementations of
LoginModule.Provides the classes and interfaces for the security framework.
This package provides a pluggable authentication framework.
This package provides the interface to be used for
implementing pluggable authentication modules.
Contains class and interfaces for supporting SASL.
-
Uses of CallbackHandler in com.sun.security.auth.callback
Classes in com.sun.security.auth.callback that implement CallbackHandlerModifier and TypeClassDescriptionclassPrompts and reads from the command line for answers to authentication questions. -
Uses of CallbackHandler in com.sun.security.auth.module
Methods in com.sun.security.auth.module with parameters of type CallbackHandlerModifier and TypeMethodDescriptionvoidJndiLoginModule.initialize(Subject subject, CallbackHandler callbackHandler, Map<String, ?> sharedState, Map<String, ?> options) Initialize thisLoginModule.voidKeyStoreLoginModule.initialize(Subject subject, CallbackHandler callbackHandler, Map<String, ?> sharedState, Map<String, ?> options) Initialize thisLoginModule.voidKrb5LoginModule.initialize(Subject subject, CallbackHandler callbackHandler, Map<String, ?> sharedState, Map<String, ?> options) Initialize thisLoginModule.voidLdapLoginModule.initialize(Subject subject, CallbackHandler callbackHandler, Map<String, ?> sharedState, Map<String, ?> options) Initialize thisLoginModule.voidNTLoginModule.initialize(Subject subject, CallbackHandler callbackHandler, Map<String, ?> sharedState, Map<String, ?> options) Initialize thisLoginModule.voidUnixLoginModule.initialize(Subject subject, CallbackHandler callbackHandler, Map<String, ?> sharedState, Map<String, ?> options) Initialize thisLoginModule. -
Uses of CallbackHandler in java.security
Methods in java.security that return CallbackHandlerModifier and TypeMethodDescriptionKeyStore.CallbackHandlerProtection.getCallbackHandler()Returns the CallbackHandler.Methods in java.security with parameters of type CallbackHandlerModifier and TypeMethodDescriptionabstract voidAuthProvider.login(Subject subject, CallbackHandler handler) Log in to this provider.abstract voidAuthProvider.setCallbackHandler(CallbackHandler handler) Set aCallbackHandler.Constructors in java.security with parameters of type CallbackHandlerModifierConstructorDescriptionCallbackHandlerProtection(CallbackHandler handler) Constructs a new CallbackHandlerProtection from a CallbackHandler. -
Uses of CallbackHandler in javax.security.auth.login
Constructors in javax.security.auth.login with parameters of type CallbackHandlerModifierConstructorDescriptionLoginContext(String name, CallbackHandler callbackHandler) Instantiate a newLoginContextobject with a name and aCallbackHandlerobject.LoginContext(String name, Subject subject, CallbackHandler callbackHandler) Instantiate a newLoginContextobject with a name, aSubjectto be authenticated, and aCallbackHandlerobject.LoginContext(String name, Subject subject, CallbackHandler callbackHandler, Configuration config) Instantiate a newLoginContextobject with a name, aSubjectto be authenticated, aCallbackHandlerobject, and a loginConfiguration. -
Uses of CallbackHandler in javax.security.auth.spi
Methods in javax.security.auth.spi with parameters of type CallbackHandlerModifier and TypeMethodDescriptionvoidLoginModule.initialize(Subject subject, CallbackHandler callbackHandler, Map<String, ?> sharedState, Map<String, ?> options) Initialize thisLoginModule. -
Uses of CallbackHandler in javax.security.sasl
Methods in javax.security.sasl with parameters of type CallbackHandlerModifier and TypeMethodDescriptionstatic SaslClientSasl.createSaslClient(String[] mechanisms, String authorizationId, String protocol, String serverName, Map<String, ?> props, CallbackHandler cbh) Creates aSaslClientusing the parameters supplied.SaslClientFactory.createSaslClient(String[] mechanisms, String authorizationId, String protocol, String serverName, Map<String, ?> props, CallbackHandler cbh) Creates a SaslClient using the parameters supplied.static SaslServerSasl.createSaslServer(String mechanism, String protocol, String serverName, Map<String, ?> props, CallbackHandler cbh) Creates aSaslServerfor the specified mechanism.SaslServerFactory.createSaslServer(String mechanism, String protocol, String serverName, Map<String, ?> props, CallbackHandler cbh) Creates aSaslServerusing the parameters supplied.