From 44aad3f84d2a820094f3b5e73722778edc8c23f5 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Tue, 24 Apr 2007 22:40:57 +0000
Subject: [PATCH] Make several significant changes to the OpenDS code base, including:
---
opends/src/server/org/opends/server/messages/MessageHandler.java | 20 +++++++++++---------
1 files changed, 11 insertions(+), 9 deletions(-)
diff --git a/opends/src/server/org/opends/server/messages/MessageHandler.java b/opends/src/server/org/opends/server/messages/MessageHandler.java
index b83ecd9..f6bceb4 100644
--- a/opends/src/server/org/opends/server/messages/MessageHandler.java
+++ b/opends/src/server/org/opends/server/messages/MessageHandler.java
@@ -62,8 +62,9 @@
* <LI>009 -- Generic backend processing</LI>
* <LI>00A -- Directory Server tools</LI>
* <LI>00B -- Task processing</LI>
- <LI>00C -- Access Control</LI>
- <LI>00D -- Administration framework</LI>
+ * <LI>00C -- Access Control</LI>
+ * <LI>00D -- Administration framework</LI>
+ * <LI>00E -- Synchronization</LI>
* <LI>800 through FFE -- Reserved for third-party modules</LI>
* <LI>FFF -- User-defined processing</LI>
* </UL>
@@ -153,12 +154,6 @@
public static final int CATEGORY_MASK_JEB = 0x00800000;
- /**
- * The category bitmask used for messages associated with the Synchronization.
- */
- public static final int CATEGORY_MASK_SYNC = 0x01000000;
-
-
/**
* The category bitmask used for messages associated with generic backends.
@@ -193,6 +188,12 @@
public static final int CATEGORY_MASK_ADMIN = 0x00D00000;
+ /**
+ * The category bitmask used for messages associated with the Synchronization.
+ */
+ public static final int CATEGORY_MASK_SYNC = 0x0E000000;
+
+
/**
* The category bitmask that will be used for messages associated with
@@ -292,6 +293,7 @@
TaskMessages.registerMessages();
AdminMessages.registerMessages();
AciMessages.registerMessages();
+ SynchronizationMessages.registerMessages();
}
@@ -387,7 +389,7 @@
* @param messageID The unique identifier assigned to this message.
* @param formatString The format string to use for this message.
*/
- public static void registerMessage(int messageID, String formatString)
+ static void registerMessage(int messageID, String formatString)
{
messageMap.put(messageID, formatString);
}
--
Gitblit v1.10.0