From 70d3c6a9d98e5b002fda985a8ac0a60c0cb79026 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Wed, 04 Oct 2006 21:47:08 +0000
Subject: [PATCH] Add a new org.opends.server.types.DirectoryConfig class that can be used to expose a number of the methods from the DirectoryServer class as part of the public interface while reducing the need for extensions to reference code in the org.opends.server.core package.

---
 opends/src/server/org/opends/server/core/DirectoryServer.java |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/opends/src/server/org/opends/server/core/DirectoryServer.java b/opends/src/server/org/opends/server/core/DirectoryServer.java
index 1472dc5..b74d5d9 100644
--- a/opends/src/server/org/opends/server/core/DirectoryServer.java
+++ b/opends/src/server/org/opends/server/core/DirectoryServer.java
@@ -2795,7 +2795,7 @@
    *
    * @return  The objectclass type, or <CODE>null</CODE> if there is no
    *          objectclass with the specified name or OID defined in the server
-   *          schema a default class should not be returned.
+   *          schema and a default class should not be returned.
    */
   public static ObjectClass getObjectClass(String lowerName,
                                            boolean returnDefault)
@@ -5744,12 +5744,12 @@
    *          backends, or <CODE>false</CODE> if it does not.
    *
    * @throws  DirectoryException  If a problem occurs while attempting to
-   *                              retrieve the entry.
+   *                              make the determination.
    */
   public static boolean entryExists(DN entryDN)
          throws DirectoryException
   {
-    assert debugEnter(CLASS_NAME, "getEntry", String.valueOf(entryDN));
+    assert debugEnter(CLASS_NAME, "entryExists", String.valueOf(entryDN));
 
 
     // If the entry is the root DSE, then it will always exist.
@@ -5894,7 +5894,7 @@
    * the list of supported features.
    *
    * @param  featureOID  The OID of the feature to register as a supported
-   *                     control.
+   *                     feature.
    */
   public static void registerSupportedFeature(String featureOID)
   {

--
Gitblit v1.10.0