Class SupportedSaslMechanisms
- java.lang.Object
-
- org.apache.directory.api.ldap.model.constants.SupportedSaslMechanisms
-
public final class SupportedSaslMechanisms extends Object
Contains constants used for populating the supportedSASLMechanisms in the RootDSE. Final reference -> class shouldn't be extended- Author:
- Apache Directory Project
-
-
Field Summary
Fields Modifier and Type Field Description static StringCRAM_MD5CRAM-MD5 mechanismstatic StringDIGEST_MD5DIGEST_MD5-MD5 mechanismstatic StringEXTERNALEXTERNAL mechanismstatic StringGSS_SPNEGONot a SASL JDK supported mechanismstatic StringGSSAPIGSSAPI mechanismstatic StringNTLMNot a SASL JDK supported mechanismstatic StringPLAINPLAIN mechanism
-
Constructor Summary
Constructors Modifier Constructor Description privateSupportedSaslMechanisms()Ensures no construction of this class, also ensures there is no need for final keyword above (Implicit super constructor is not visible for default constructor), but is still self documenting.
-
-
-
Field Detail
-
CRAM_MD5
public static final String CRAM_MD5
CRAM-MD5 mechanism- See Also:
- Constant Field Values
-
DIGEST_MD5
public static final String DIGEST_MD5
DIGEST_MD5-MD5 mechanism- See Also:
- Constant Field Values
-
GSSAPI
public static final String GSSAPI
GSSAPI mechanism- See Also:
- Constant Field Values
-
PLAIN
public static final String PLAIN
PLAIN mechanism- See Also:
- Constant Field Values
-
NTLM
public static final String NTLM
Not a SASL JDK supported mechanism- See Also:
- Constant Field Values
-
GSS_SPNEGO
public static final String GSS_SPNEGO
Not a SASL JDK supported mechanism- See Also:
- Constant Field Values
-
EXTERNAL
public static final String EXTERNAL
EXTERNAL mechanism- See Also:
- Constant Field Values
-
-