public static enum ReplicationDomainCfgDefn.AssuredType extends Enum<ReplicationDomainCfgDefn.AssuredType>
Defines the assured replication mode of the replicated domain.
The assured replication can be disabled or enabled. When enabled, two modes are available: Safe Data or Safe Read modes.
Enum Constant and Description |
---|
NOT_ASSURED
Assured replication is not enabled.
|
SAFE_DATA
Assured replication is enabled in Safe Data mode: updates sent
for replication are subject to acknowledgment from the
replication servers that have the same group ID as the local
server (defined with the group-id property).
|
SAFE_READ
Assured replication is enabled in Safe Read mode: updates sent
for replication are subject to acknowledgments from the LDAP
servers in the topology that have the same group ID as the local
server (defined with the group-id property).
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static ReplicationDomainCfgDefn.AssuredType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReplicationDomainCfgDefn.AssuredType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReplicationDomainCfgDefn.AssuredType NOT_ASSURED
public static final ReplicationDomainCfgDefn.AssuredType SAFE_DATA
public static final ReplicationDomainCfgDefn.AssuredType SAFE_READ
public static ReplicationDomainCfgDefn.AssuredType[] values()
for (ReplicationDomainCfgDefn.AssuredType c : ReplicationDomainCfgDefn.AssuredType.values()) System.out.println(c);
public static ReplicationDomainCfgDefn.AssuredType 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 nullpublic String toString()
toString
in class Enum<ReplicationDomainCfgDefn.AssuredType>
Copyright 2010-2018 ForgeRock AS.