public enum ReadOnUpdatePolicy extends Enum<ReadOnUpdatePolicy>
| Enum Constant and Description |
|---|
CONTROLS
The LDAP entry will be read atomically using the RFC 4527 read-entry
controls.
|
DISABLED
The LDAP entry will not be read when an update is performed.
|
SEARCH
The LDAP entry will be read non-atomically using an LDAP search when an
update is performed.
|
| Modifier and Type | Method and Description |
|---|---|
static ReadOnUpdatePolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReadOnUpdatePolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReadOnUpdatePolicy DISABLED
public static final ReadOnUpdatePolicy CONTROLS
public static final ReadOnUpdatePolicy SEARCH
public static ReadOnUpdatePolicy[] values()
for (ReadOnUpdatePolicy c : ReadOnUpdatePolicy.values()) System.out.println(c);
public static ReadOnUpdatePolicy 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 © 2011-2015 ForgeRock AS. All Rights Reserved.