public enum AuthenticationProvider extends Enum<AuthenticationProvider>
Enum Constant and Description |
---|
CAS |
Database |
GooglePlus |
LDAP |
SAML |
Modifier and Type | Method and Description |
---|---|
static AuthenticationProvider |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationProvider[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticationProvider CAS
public static final AuthenticationProvider Database
public static final AuthenticationProvider GooglePlus
public static final AuthenticationProvider LDAP
public static final AuthenticationProvider SAML
public static AuthenticationProvider[] values()
for (AuthenticationProvider c : AuthenticationProvider.values()) System.out.println(c);
public static AuthenticationProvider 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 null