From 90f97a8328fb2433989b4ac05dd565dc6b4db4bc Mon Sep 17 00:00:00 2001
From: Fabio Pistolesi <fabio.pistolesi@forgerock.com>
Date: Mon, 02 Nov 2015 09:41:59 +0000
Subject: [PATCH] OPENDJ-1937 Replication draft change log changeNumber attribute should be synchronized with other RSs during initialization
---
opendj-server-legacy/src/main/java/org/opends/server/config/ConfigConstants.java | 11 +++++++++++
1 files changed, 11 insertions(+), 0 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/config/ConfigConstants.java b/opendj-server-legacy/src/main/java/org/opends/server/config/ConfigConstants.java
index 6e4bb09..798a6ec 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/config/ConfigConstants.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/config/ConfigConstants.java
@@ -4421,5 +4421,16 @@
public static final String ATTR_TASK_CONFLICTS_HIST_PURGE_COUNT =
NAME_PREFIX_TASK + "purge-conflicts-historical-purged-values-count";
+ /** The name of the objectclass that will be used for a Directory Server reset change number task definition. */
+ public static final String OC_RESET_CHANGE_NUMBER_TASK = NAME_PREFIX_TASK + "reset-change-number";
+
+ /** The name of the attribute in a reset change number task that specifies the change number for the first change. */
+ public static final String ATTR_TASK_RESET_CHANGE_NUMBER_TO= NAME_PREFIX_TASK + "reset-change-number-to";
+
+ /** The name of the attribute in a reset change number task that specifies the csn of the new first change. */
+ public static final String ATTR_TASK_RESET_CHANGE_NUMBER_CSN = NAME_PREFIX_TASK + "reset-change-number-csn";
+
+ /** The name of the attribute in a reset change number task that specifies the basedn where the csn applies. */
+ public static final String ATTR_TASK_RESET_CHANGE_NUMBER_BASE_DN = NAME_PREFIX_TASK + "reset-change-number-base-dn";
}
--
Gitblit v1.10.0