public enum AuthenticationMethod extends Enum<AuthenticationMethod>
Enum Constant and Description |
---|
AD_SSO
AD SSO
|
EID_ACCOUNT
Enterprise ID
|
EMAIL_SELF_ENROLLMENT
Email self-enrollment
|
GENERAL_OAUTH
General OAUTH
|
MULTI_METHODS
Multi-methods
|
OIDC_ACCOUNT
Enterprise ID
|
SAML
SAML
|
SYSTEM_ACCOUNT
System account
|
USER_PASSWORD
Username-password
|
Modifier and Type | Method and Description |
---|---|
static AuthenticationMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticationMethod EMAIL_SELF_ENROLLMENT
public static final AuthenticationMethod USER_PASSWORD
public static final AuthenticationMethod AD_SSO
public static final AuthenticationMethod GENERAL_OAUTH
public static final AuthenticationMethod SAML
public static final AuthenticationMethod MULTI_METHODS
public static final AuthenticationMethod SYSTEM_ACCOUNT
public static final AuthenticationMethod EID_ACCOUNT
public static final AuthenticationMethod OIDC_ACCOUNT
public static AuthenticationMethod[] values()
for (AuthenticationMethod c : AuthenticationMethod.values()) System.out.println(c);
public static AuthenticationMethod 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 © 2019. All rights reserved.