From bdf67a3c15262fb750ae1c0302212dc03ff94a06 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Tue, 09 Jan 2007 20:20:30 +0000
Subject: [PATCH] Update the schema backend to provide full support for online schema updates. which includes the following:

---
 opendj-sdk/opends/src/server/org/opends/server/util/ServerConstants.java |   51 ++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 50 insertions(+), 1 deletions(-)

diff --git a/opendj-sdk/opends/src/server/org/opends/server/util/ServerConstants.java b/opendj-sdk/opends/src/server/org/opends/server/util/ServerConstants.java
index d3035d1..5db76e1 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/util/ServerConstants.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/util/ServerConstants.java
@@ -22,7 +22,7 @@
  * CDDL HEADER END
  *
  *
- *      Portions Copyright 2006 Sun Microsystems, Inc.
+ *      Portions Copyright 2006-2007 Sun Microsystems, Inc.
  */
 package org.opends.server.util;
 
@@ -1396,6 +1396,55 @@
 
 
   /**
+   * The description for the alert type that will be used for the alert
+   * notification generated if a problem occurs while creating copies of the
+   * existing schema configuration files and a problem occurs that leaves the
+   * schema configuration in a potentially inconsistent state.
+   */
+  public static final String ALERT_DESCRIPTION_CANNOT_COPY_SCHEMA_FILES =
+      "This alert type will be used to notify administrators if a problem " +
+      "occurs while attempting to create copies of the existing schema " +
+      "configuration files before making a schema update, and the schema " +
+      "configuration is left in a potentially inconsistent state.";
+
+
+
+  /**
+   * The alert type string that will be used for the alert notification
+   * generated if a problem occurs while creating copies of the existing schema
+   * files in a manner that may leave the schema configuration inconsistent.
+   */
+  public static final String ALERT_TYPE_CANNOT_COPY_SCHEMA_FILES =
+       "org.opends.server.CannotCopySchemaFiles";
+
+
+
+  /**
+   * The description for the alert type that will be used for the alert
+   * notification generated if a problem occurs while writing new versions of
+   * the server schema configuration files and a problem occurs that leaves the
+   * schema configuration in a potentially inconsistent state.
+   */
+  public static final String ALERT_DESCRIPTION_CANNOT_WRITE_NEW_SCHEMA_FILES =
+      "This alert type will be used to notify administrators if a problem " +
+      "occurs while attempting to write new verisons of the server schema " +
+      "configuration files, and the schema configuration is left in a " +
+      "potentially inconsistent state.";
+
+
+
+  /**
+   * The alert type string that will be used for the alert notification
+   * generated if a problem occurs while writing new versions of the server
+   * schema files in a manner that may leave the schema configuration
+   * inconsistent.
+   */
+  public static final String ALERT_TYPE_CANNOT_WRITE_NEW_SCHEMA_FILES =
+       "org.opends.server.CannotWriteNewSchemaFiles";
+
+
+
+  /**
    * The name of the default password storage scheme that will be used for new
    * passwords.
    */

--
Gitblit v1.10.0