Uses of Class
org.opends.server.api.SASLMechanismHandler
-
Packages that use SASLMechanismHandler Package Description org.opends.server.core Contains various classes that comprise the core of the Directory Server codebase.org.opends.server.extensions Contains various implementations of Directory Server APIs that are not appropriate for other packages. -
-
Uses of SASLMechanismHandler in org.opends.server.core
Methods in org.opends.server.core that return SASLMechanismHandler Modifier and Type Method Description SASLMechanismHandler<?>
DirectoryServer. getSASLMechanismHandler(String name)
SASLMechanismHandler<?>
ServerContext. getSASLMechanismHandler(String name)
Retrieves the handler for the specified SASL mechanism.Methods in org.opends.server.core with parameters of type SASLMechanismHandler Modifier and Type Method Description void
DirectoryServer. registerSASLMechanismHandler(String name, SASLMechanismHandler<?> handler)
void
ServerContext. registerSASLMechanismHandler(String name, SASLMechanismHandler<?> handler)
Registers the provided SASL mechanism handler with the Directory Server. -
Uses of SASLMechanismHandler in org.opends.server.extensions
Subclasses of SASLMechanismHandler in org.opends.server.extensions Modifier and Type Class Description class
AnonymousSASLMechanismHandler
This class provides an implementation of a SASL mechanism, as defined in RFC 4505, that does not perform any authentication.class
CRAMMD5SASLMechanismHandler
This class provides an implementation of a SASL mechanism that authenticates clients through CRAM-MD5.class
DigestMD5SASLMechanismHandler
This class provides an implementation of a SASL mechanism that authenticates clients through DIGEST-MD5.class
ExternalSASLMechanismHandler
This class provides an implementation of a SASL mechanism that relies on some form of authentication that has already been done outside the LDAP layer.class
GSSAPISASLMechanismHandler
This class provides an implementation of a SASL mechanism that authenticates clients through Kerberos v5 over GSSAPI.class
PlainSASLMechanismHandler
This class provides an implementation of a SASL mechanism that uses plain-text authentication.class
ScramSha256SASLMechanismHandler
This class defines the SCRAM-SHA-256 SASL mechanism defined in RFCs 5802, 5803 and 7677.class
ScramSha512SASLMechanismHandler
This class defines the SCRAM-SHA-512 SASL mechanism defined in RFCs 5802, 5803 and 7677.
-