public static enum SecurityConfig.AuthenticationType extends Enum<SecurityConfig.AuthenticationType>
| Enum Constant and Description |
|---|
CERTIFICATE |
JWT |
KERBEROS |
PASSWORD |
| Modifier and Type | Method and Description |
|---|---|
static SecurityConfig.AuthenticationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SecurityConfig.AuthenticationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecurityConfig.AuthenticationType CERTIFICATE
public static final SecurityConfig.AuthenticationType KERBEROS
public static final SecurityConfig.AuthenticationType PASSWORD
public static final SecurityConfig.AuthenticationType JWT
public static SecurityConfig.AuthenticationType[] values()
for (SecurityConfig.AuthenticationType c : SecurityConfig.AuthenticationType.values()) System.out.println(c);
public static SecurityConfig.AuthenticationType 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 nullCopyright © 2012–2019. All rights reserved.