Enum Class ReplicationSynchronizationProviderCfgDefn.IsolationPolicy
java.lang.Object
java.lang.Enum<ReplicationSynchronizationProviderCfgDefn.IsolationPolicy>
org.forgerock.opendj.server.config.meta.ReplicationSynchronizationProviderCfgDefn.IsolationPolicy
- All Implemented Interfaces:
Serializable
,Comparable<ReplicationSynchronizationProviderCfgDefn.IsolationPolicy>
,java.lang.constant.Constable
- Enclosing class:
- ReplicationSynchronizationProviderCfgDefn
public static enum ReplicationSynchronizationProviderCfgDefn.IsolationPolicy
extends Enum<ReplicationSynchronizationProviderCfgDefn.IsolationPolicy>
Defines the set of permissible values for the "isolation-policy" property.
Specifies the behavior of the directory server when writing to replicated data while none of the configured Replication Servers are available.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe server accepts updates even when it cannot send them to any Replication Server.Indicates that all updates attempted on this Replication Synchronization Provider are rejected when no Replication Server is available. -
Method Summary
-
Enum Constant Details
-
ACCEPT_ALL_UPDATES
The server accepts updates even when it cannot send them to any Replication Server. When a Replication Server again becomes available, the server attempts to resend the updates. This does not guarantee that updates will be successfully resent. This mode can cause high replication latency. -
REJECT_ALL_UPDATES
Indicates that all updates attempted on this Replication Synchronization Provider are rejected when no Replication Server is available.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
- Overrides:
toString
in classEnum<ReplicationSynchronizationProviderCfgDefn.IsolationPolicy>
-