From fbda6e0892dcfcc8dd43d21f6fb134aabb8d0cac Mon Sep 17 00:00:00 2001
From: jarnou <jarnou@localhost>
Date: Tue, 03 Jul 2007 09:29:17 +0000
Subject: [PATCH] Commits the refactoring of the core server to provide support for proxy/distribution/virtual functionnalities. This includes the new set of local operations, as well as the workflow and networkgroup support.
---
opends/src/server/org/opends/server/messages/CoreMessages.java | 19 +++++++++++++++++++
1 files changed, 19 insertions(+), 0 deletions(-)
diff --git a/opends/src/server/org/opends/server/messages/CoreMessages.java b/opends/src/server/org/opends/server/messages/CoreMessages.java
index 276fe40..b6e7111 100644
--- a/opends/src/server/org/opends/server/messages/CoreMessages.java
+++ b/opends/src/server/org/opends/server/messages/CoreMessages.java
@@ -6169,6 +6169,16 @@
CATEGORY_MASK_CORE | SEVERITY_MASK_NOTICE | 619;
+ /**
+ * The message ID for the message that will be used if a workflow is
+ * configured with no root workflow element. No root workflow element
+ * means no processing on the DIT attached to the workflow, which makes
+ * no sense.
+ */
+ public static final int MSGID_WARNING_ROOT_WORKFLOW_ELEMENT_NOT_DEFINED =
+ CATEGORY_MASK_CORE | SEVERITY_MASK_SEVERE_WARNING | 620;
+
+
/**
* The message ID for the message that will be used if an attribute used an
@@ -8443,6 +8453,11 @@
"The Directory Server is leaving lockdown mode and will " +
"resume normal operation");
+ registerMessage(MSGID_WARNING_ROOT_WORKFLOW_ELEMENT_NOT_DEFINED,
+ "The workflow with base DN \"%s\" has no root workflow " +
+ "element"
+ );
+
registerMessage(MSGID_COMPRESSEDSCHEMA_UNRECOGNIZED_AD_TOKEN,
"Unable to decode the provided attribute because it " +
@@ -8458,6 +8473,10 @@
registerMessage(MSGID_ENTRYENCODECFG_INVALID_LENGTH,
"Unable to decode the provided entry encode " +
"configuration element because it has an invalid length");
+
+ registerMessage(MSGID_WARNING_ROOT_WORKFLOW_ELEMENT_NOT_DEFINED,
+ "The workflow with base DN \"%s\" has no root workflow " +
+ "element");
}
}
--
Gitblit v1.10.0