Serializable, Comparable<SecurityInformation.AuthenticationAdaptorType>public static enum SecurityInformation.AuthenticationAdaptorType extends Enum<SecurityInformation.AuthenticationAdaptorType>
| Enum Constant | Description |
|---|---|
KERBEROS |
Authenticated by Kerberos.
|
O5LOGON |
Authenticated by a database user name and password, using the O5LOGON
protocol of Oracle Database.
|
OAUTH |
Authenticated by an OAUTH access token.
|
RADIUS |
Authenticated by RADIUS.
|
TCPS |
Authenticated by a TLS certificate.
|
| Modifier and Type | Method | Description |
|---|---|---|
static SecurityInformation.AuthenticationAdaptorType |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static SecurityInformation.AuthenticationAdaptorType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecurityInformation.AuthenticationAdaptorType O5LOGON
public static final SecurityInformation.AuthenticationAdaptorType KERBEROS
public static final SecurityInformation.AuthenticationAdaptorType RADIUS
public static final SecurityInformation.AuthenticationAdaptorType TCPS
public static final SecurityInformation.AuthenticationAdaptorType OAUTH
public static SecurityInformation.AuthenticationAdaptorType[] values()
for (SecurityInformation.AuthenticationAdaptorType c : SecurityInformation.AuthenticationAdaptorType.values()) System.out.println(c);
public static SecurityInformation.AuthenticationAdaptorType 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 null