@ThreadSafety(level=COMPLETELY_THREADSAFE) public enum BindRequestAuthenticationType extends java.lang.Enum<BindRequestAuthenticationType>
NOTE: This class, and other classes within the
com.unboundid.ldap.sdk.unboundidds
package structure, are only
supported for use against Ping Identity, UnboundID, and Alcatel-Lucent 8661
server products. These classes provide support for proprietary
functionality or for external specifications that are not considered stable
or mature enough to be guaranteed to work in an interoperable way with
other types of LDAP servers.
Enum Constant and Description |
---|
INTERNAL
The authentication type that will be used for authentication by an internal
client.
|
SASL
The authentication type that will be used for SASL authentication.
|
SIMPLE
The authentication type that will be used for simple authentication.
|
Modifier and Type | Method and Description |
---|---|
static BindRequestAuthenticationType |
forName(java.lang.String name)
Retrieves the authentication type with the specified name.
|
static BindRequestAuthenticationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BindRequestAuthenticationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BindRequestAuthenticationType INTERNAL
public static final BindRequestAuthenticationType SASL
public static final BindRequestAuthenticationType SIMPLE
public static BindRequestAuthenticationType[] values()
for (BindRequestAuthenticationType c : BindRequestAuthenticationType.values()) System.out.println(c);
public static BindRequestAuthenticationType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static BindRequestAuthenticationType forName(java.lang.String name)
name
- The name of the authentication type to retrieve. It must not
be null
.null
if no such type
is defined.