public static enum SecurityInformation.AuthenticationAdaptorType extends java.lang.Enum<SecurityInformation.AuthenticationAdaptorType>
| Enum Constant and 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 and Description |
|---|---|
static SecurityInformation.AuthenticationAdaptorType |
valueOf(java.lang.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(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