Enum ReplicationDomainCfgDefn.AssuredType

    • Enum Constant Detail

      • NOT_ASSURED

        public static final ReplicationDomainCfgDefn.AssuredType NOT_ASSURED
        Assured replication is not enabled. Updates sent for replication (for being replayed on other LDAP servers in the topology) are sent without waiting for any acknowledgment and the LDAP client call returns immediately.
      • SAFE_DATA

        public static final ReplicationDomainCfgDefn.AssuredType 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). The number of acknowledgments to expect is defined by the assured-sd-level property. After acknowledgments are received, LDAP client call returns.
      • SAFE_READ

        public static final ReplicationDomainCfgDefn.AssuredType 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). After acknowledgments are received, LDAP client call returns.
    • Method Detail

      • values

        public static ReplicationDomainCfgDefn.AssuredType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (ReplicationDomainCfgDefn.AssuredType c : ReplicationDomainCfgDefn.AssuredType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ReplicationDomainCfgDefn.AssuredType valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
        NullPointerException - if the argument is null