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/messages/SchemaMessages.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/messages/SchemaMessages.java b/opendj-sdk/opends/src/server/org/opends/server/messages/SchemaMessages.java
index 47e7233..683722e 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/messages/SchemaMessages.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/messages/SchemaMessages.java
@@ -3334,8 +3334,8 @@
"The definition for the objectclass with OID %s declared " +
"a superior objectclass with an OID of %s. No " +
"objectclass with this OID exists in the server schema, " +
- "so the Directory Server will use the top objectclass as " +
- "the superior class for this definition.");
+ "so the Directory Server will assume it to be an empty " +
+ "objectclass with no required or optional attributes.");
registerMessage(MSGID_ATTR_SYNTAX_OBJECTCLASS_EXPECTED_QUOTE_AT_POS,
"The provided value \"%s\" could not be parsed as an " +
"objectclass description because a single quote was " +
--
Gitblit v1.10.0