public static enum IdentityStore.ValidationType extends java.lang.Enum<IdentityStore.ValidationType>
IdentityStore
is capable of,
but only what the store is configured to be used for.Enum Constant and Description |
---|
PROVIDE_GROUPS
Only groups for a principal, possibly established by another IdentityStore, are taken from this store.
|
VALIDATE
Only validation is performed, so no groups, are taken from this store.
|
Modifier and Type | Method and Description |
---|---|
static IdentityStore.ValidationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IdentityStore.ValidationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IdentityStore.ValidationType VALIDATE
public static final IdentityStore.ValidationType PROVIDE_GROUPS
public static IdentityStore.ValidationType[] values()
for (IdentityStore.ValidationType c : IdentityStore.ValidationType.values()) System.out.println(c);
public static IdentityStore.ValidationType 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