From 40cef7d36084fbe86d34cfa497628d8972c4c9e7 Mon Sep 17 00:00:00 2001
From: pgamba <pgamba@localhost>
Date: Thu, 29 Mar 2007 17:53:41 +0000
Subject: [PATCH] 

---
 opends/src/server/org/opends/server/messages/TaskMessages.java |   17 +++++++++++++++++
 1 files changed, 17 insertions(+), 0 deletions(-)

diff --git a/opends/src/server/org/opends/server/messages/TaskMessages.java b/opends/src/server/org/opends/server/messages/TaskMessages.java
index 16843e3..7349988 100644
--- a/opends/src/server/org/opends/server/messages/TaskMessages.java
+++ b/opends/src/server/org/opends/server/messages/TaskMessages.java
@@ -211,7 +211,19 @@
   public static final int MSGID_TASK_ADDSCHEMAFILE_CANNOT_NOTIFY_SYNC_PROVIDER =
        CATEGORY_MASK_TASK | SEVERITY_MASK_SEVERE_ERROR | 17;
 
+  /**
+   * The message ID for the message that will be used when an invalid domain
+   * base DN is provided as argument to the initialize target task.
+   */
+  public static final int  MSGID_TASK_INITIALIZE_TARGET_INVALID_DN =
+       CATEGORY_MASK_TASK | SEVERITY_MASK_SEVERE_ERROR | 18;
 
+  /**
+   * The message ID for the message that will be used when an invalid domain
+   * base DN is provided as argument to the initialize task.
+   */
+  public static final int  MSGID_TASK_INITIALIZE_INVALID_DN =
+       CATEGORY_MASK_TASK | SEVERITY_MASK_SEVERE_ERROR | 19;
 
   /**
    * Associates a set of generic messages with the message IDs defined in this
@@ -279,6 +291,11 @@
     registerMessage(MSGID_TASK_LDIFEXPORT_INSUFFICIENT_PRIVILEGES,
                     "You do not have sufficient privileges to initiate an " +
                     "LDIF export.");
+
+    registerMessage(MSGID_TASK_INITIALIZE_TARGET_INVALID_DN,
+                    "Invalid DN provided with the Initialize Target task.");
+    registerMessage(MSGID_TASK_INITIALIZE_INVALID_DN,
+                    "Invalid DN provided with the Initialize task.");
   }
 }
 

--
Gitblit v1.10.0