public enum UserAuthenticationType extends Enum<UserAuthenticationType> implements HasName
| Enum Constant and Description |
|---|
BASIC_AUTHENTICATION
Authentication using passwords.
|
CLIENT_CERTIFICATE
Authentication using Certificate.
|
MY_ADMIN
MyAdmin global user.
|
NONE
None or unknown.
|
SAML
Authentication using SAML.
|
WINDOWS_AUTHENTICATION
Authentication using Windows Domains.
|
| Modifier and Type | Method and Description |
|---|---|
static UserAuthenticationType |
findOrDefault(String name) |
int |
getCode() |
String |
getName() |
static UserAuthenticationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserAuthenticationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserAuthenticationType NONE
public static final UserAuthenticationType BASIC_AUTHENTICATION
public static final UserAuthenticationType WINDOWS_AUTHENTICATION
public static final UserAuthenticationType MY_ADMIN
public static final UserAuthenticationType SAML
public static final UserAuthenticationType CLIENT_CERTIFICATE
public static UserAuthenticationType[] values()
for (UserAuthenticationType c : UserAuthenticationType.values()) System.out.println(c);
public static UserAuthenticationType 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 nullpublic int getCode()
public static UserAuthenticationType findOrDefault(String name)
Copyright © 2023. All rights reserved.