From 94bbd5bb7c20a490558d8ec97d1be7e3dc492a42 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Sun, 09 Sep 2007 23:08:09 +0000
Subject: [PATCH] Update the server to provide a basic framework for controlling when plugins will be invoked. There are two basic changes:
---
opends/src/server/org/opends/server/util/ServerConstants.java | 44 ++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 44 insertions(+), 0 deletions(-)
diff --git a/opends/src/server/org/opends/server/util/ServerConstants.java b/opends/src/server/org/opends/server/util/ServerConstants.java
index 2d54cca..704801e 100644
--- a/opends/src/server/org/opends/server/util/ServerConstants.java
+++ b/opends/src/server/org/opends/server/util/ServerConstants.java
@@ -1703,6 +1703,50 @@
/**
+ * The description for the alert type that will be used for the alert
+ * notification generated if a unique attribute conflict is detected during
+ * synchronization processing.
+ */
+ public static final String ALERT_DESCRIPTION_UNIQUE_ATTR_SYNC_CONFLICT =
+ "This alert type will be used to provide notification that a unique " +
+ "attribute conflict has been detected during synchronization " +
+ "processing.";
+
+
+
+ /**
+ * The alert type string that will be used for the alert notification
+ * generated if a unique attribute conflict is detected during synchronization
+ * processing.
+ */
+ public static final String ALERT_TYPE_UNIQUE_ATTR_SYNC_CONFLICT =
+ "org.opends.server.UniqueAttributeSynchronizationConflict";
+
+
+
+ /**
+ * The description for the alert type that will be used for the alert
+ * notification generated if an error occurs while attempting to perform
+ * unique attribute conflict detection during synchronization processing.
+ */
+ public static final String ALERT_DESCRIPTION_UNIQUE_ATTR_SYNC_ERROR =
+ "This alert type will be used to provide notification that an error " +
+ "occurred while attempting to perform unique attribute conflict " +
+ "detection during synchronization processing.";
+
+
+
+ /**
+ * The alert type string that will be used for the alert notification
+ * generated if an error occurs while attempting to perform unique attribute
+ * conflict detection during synchronization processing.
+ */
+ public static final String ALERT_TYPE_UNIQUE_ATTR_SYNC_ERROR =
+ "org.opends.server.UniqueAttributeSynchronizationError";
+
+
+
+ /**
* The name of the default password storage scheme that will be used for new
* passwords.
*/
--
Gitblit v1.10.0