From efde227b9d0180122362133a750c6b322601c883 Mon Sep 17 00:00:00 2001
From: kenneth_suter <kenneth_suter@localhost>
Date: Thu, 19 Jul 2007 20:28:20 +0000
Subject: [PATCH] This initial implementation lays most of the groundwork necessary for signaling information and actions to the user during upgrade and reversion. However the only public effect this code has on the current upgrade tool is an informational dialog dialog if an upgrade is attempted from a build prior to one of the issues (2049, 1582, 890).
---
opends/src/server/org/opends/server/messages/MessageHandler.java | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/opends/src/server/org/opends/server/messages/MessageHandler.java b/opends/src/server/org/opends/server/messages/MessageHandler.java
index baf2fe5..3507106 100644
--- a/opends/src/server/org/opends/server/messages/MessageHandler.java
+++ b/opends/src/server/org/opends/server/messages/MessageHandler.java
@@ -65,6 +65,7 @@
* <LI>00C -- Access Control</LI>
* <LI>00D -- Administration framework</LI>
* <LI>00E -- Synchronization</LI>
+ * <LI>00E -- Version Compatibility (Flag Days)</LI>
* <LI>800 through FFE -- Reserved for third-party modules</LI>
* <LI>FFF -- User-defined processing</LI>
* </UL>
@@ -193,7 +194,10 @@
*/
public static final int CATEGORY_MASK_SYNC = 0x0E000000;
-
+ /**
+ * The category bitmask used for messages associated with flag day messages.
+ */
+ public static final int CATEGORY_MASK_VERSION_COMPATIBITY_ISSUES = 0x0F000000;
/**
* The category bitmask that will be used for messages associated with
@@ -294,6 +298,7 @@
AdminMessages.registerMessages();
AciMessages.registerMessages();
ReplicationMessages.registerMessages();
+ VersionMessages.registerMessages();
}
--
Gitblit v1.10.0