Enum Class ReplicationServerCfgDefn.ChangelogEnabled
java.lang.Object
java.lang.Enum<ReplicationServerCfgDefn.ChangelogEnabled>
org.forgerock.opendj.server.config.meta.ReplicationServerCfgDefn.ChangelogEnabled
- All Implemented Interfaces:
Serializable
,Comparable<ReplicationServerCfgDefn.ChangelogEnabled>
,java.lang.constant.Constable
- Enclosing class:
- ReplicationServerCfgDefn
public static enum ReplicationServerCfgDefn.ChangelogEnabled
extends Enum<ReplicationServerCfgDefn.ChangelogEnabled>
Defines the set of permissible values for the "changelog-enabled" property.
Specifies whether the "cn=changelog" backend will be available to client applications.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe "cn=changelog" backend will not be available to client applications.The "cn=changelog" backend will be available to client applications.The "cn=changelog" backend will be available to client applications. -
Method Summary
-
Enum Constant Details
-
DISABLED
The "cn=changelog" backend will not be available to client applications. -
ENABLED
The "cn=changelog" backend will be available to client applications. It will support searches using changelog cookies and "change numbers" as per the internet draft, https://datatracker.ietf.org/doc/html/draft-good-ldap-changelog-04. Change numbers are globally consistent across all servers. This mode requires additional CPU, disk accesses and storage, so it should not be used unless change number based browsing is required. -
ENABLED_COOKIE_MODE_ONLY
The "cn=changelog" backend will be available to client applications. However, it will only support searches using changelog cookies. Changes are published immediately, and in an order which may vary from one server to another. This mode does not require additional server resources.
-
-
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<ReplicationServerCfgDefn.ChangelogEnabled>
-