|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<DatabaseConnection.AuthenticationMode>
com.sap.sl.sdk.authoring.connection.DatabaseConnection.AuthenticationMode
public static enum DatabaseConnection.AuthenticationMode
Provides the values used to set the parameter DatabaseConnection.AUTHENTICATION_MODE
.
Enum Constant Summary | |
---|---|
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. |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final DatabaseConnection.AuthenticationMode FIXED
public static final DatabaseConnection.AuthenticationMode MAPPING
public static final DatabaseConnection.AuthenticationMode SSO
public static final DatabaseConnection.AuthenticationMode PROMPTED
Method Detail |
---|
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 name
java.lang.NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |