public static enum DatabaseConnection.AuthenticationMode extends java.lang.Enum<DatabaseConnection.AuthenticationMode>
DatabaseConnection.AUTHENTICATION_MODE.| Enum Constant and Description |
|---|
FIXED
A specific logon (user name and password) is required to authenticate to the database.
|
MAPPING
A login domain is required to authenticate to the database.
|
PROMPTED
A logon by prompt is required to authenticate to the database (OLAP only).
|
SSO
A single sign-on logon is required to authenticate to the database.
|
| Modifier and Type | Method and Description |
|---|---|
static DatabaseConnection.AuthenticationMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DatabaseConnection.AuthenticationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatabaseConnection.AuthenticationMode FIXED
public static final DatabaseConnection.AuthenticationMode MAPPING
public static final DatabaseConnection.AuthenticationMode SSO
public static final DatabaseConnection.AuthenticationMode PROMPTED
public static DatabaseConnection.AuthenticationMode[] values()
for (DatabaseConnection.AuthenticationMode c : DatabaseConnection.AuthenticationMode.values()) System.out.println(c);
public static DatabaseConnection.AuthenticationMode 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 null