mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

neil_a_wilson
25.40.2007 44aad3f84d2a820094f3b5e73722778edc8c23f5
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);
  }