public enum AuthenticationStrategy extends java.lang.Enum<AuthenticationStrategy>
Enum Constant and Description |
---|
ALL
All authentication providers must return a successful response
for authentication to succeed.
|
ANY
At least one authentication provider must return a successful response for authentication to succeed.
|
Modifier and Type | Method and Description |
---|---|
static AuthenticationStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticationStrategy ALL
public static final AuthenticationStrategy ANY
public static AuthenticationStrategy[] values()
for (AuthenticationStrategy c : AuthenticationStrategy.values()) System.out.println(c);
public static AuthenticationStrategy 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 null