@Deprecated public static enum DatabaseClientFactory.Authentication extends Enum<DatabaseClientFactory.Authentication>
Authentication enumerates the methods for verifying a user and password with the database.
| Enum Constant and Description |
|---|
BASIC
Deprecated.
Minimal security unless used with SSL.
|
CERTIFICATE
Deprecated.
Authentication using Certificates;
|
DIGEST
Deprecated.
Moderate security without SSL.
|
KERBEROS
Deprecated.
Authentication using Kerberos.
|
| Modifier and Type | Method and Description |
|---|---|
static DatabaseClientFactory.Authentication |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static DatabaseClientFactory.Authentication |
valueOfUncased(String name)
Deprecated.
Returns the enumerated value for the case-insensitive name.
|
static DatabaseClientFactory.Authentication[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatabaseClientFactory.Authentication BASIC
public static final DatabaseClientFactory.Authentication DIGEST
public static final DatabaseClientFactory.Authentication KERBEROS
public static final DatabaseClientFactory.Authentication CERTIFICATE
public static DatabaseClientFactory.Authentication[] values()
for (DatabaseClientFactory.Authentication c : DatabaseClientFactory.Authentication.values()) System.out.println(c);
public static DatabaseClientFactory.Authentication valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static DatabaseClientFactory.Authentication valueOfUncased(String name)
Returns the enumerated value for the case-insensitive name.
name - the name of the enumerated valueCopyright © 2013-2017 MarkLogic Corporation.