From cd068f12d9ab47bd1a8bb924dd62cc6de0f8c46b Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Fri, 15 Dec 2006 22:03:46 +0000
Subject: [PATCH] Add initial support for updating the Directory Server schema over protocol. In particular, this commit makes it possible to add new attribute types and objectclasses and have them written to the 99-user.ldif file. This implementation does not yet support interacting with any other schema element types, removing or replacing existing schema elements, or interacting with any files other than 99-user.ldif. Additional functionality will be added in the future to enable these capabilities.
---
opendj-sdk/opends/src/server/org/opends/server/config/ConfigConstants.java | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/config/ConfigConstants.java b/opendj-sdk/opends/src/server/org/opends/server/config/ConfigConstants.java
index 8bb712d..3247efa 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/config/ConfigConstants.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/config/ConfigConstants.java
@@ -3262,6 +3262,14 @@
/**
+ * The name (with no path information) of the file in the schema directory
+ * that will contain user-defined schema definitions.
+ */
+ public static final String FILE_USER_SCHEMA_ELEMENTS = "99-user.ldif";
+
+
+
+ /**
* The name of the configuration attribute that indicates the log file
* where the loggers will log the information.
*/
--
Gitblit v1.10.0