public enum IdpAuthMode extends java.lang.Enum<IdpAuthMode> implements EnumClass<java.lang.String>
| Enum Constant and Description |
|---|
LDAP
Delegate authentication to LDAP server.
|
STANDARD
Authenticate users with built-in logins and passwords.
|
| Modifier and Type | Method and Description |
|---|---|
static IdpAuthMode |
fromId(java.lang.String id) |
java.lang.String |
getId() |
static IdpAuthMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IdpAuthMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IdpAuthMode STANDARD
public static final IdpAuthMode LDAP
public static IdpAuthMode[] values()
for (IdpAuthMode c : IdpAuthMode.values()) System.out.println(c);
public static IdpAuthMode 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 nullpublic static IdpAuthMode fromId(java.lang.String id)