From 89debdc4f4f38e0d973c9f4f37e1c34002deeeb4 Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Tue, 22 May 2007 14:35:47 +0000
Subject: [PATCH] Various improvements and refactorings of the admin framework client API, including:

---
 opendj-sdk/opends/src/server/org/opends/server/admin/LDAPProfile.java |   26 --------------------------
 1 files changed, 0 insertions(+), 26 deletions(-)

diff --git a/opendj-sdk/opends/src/server/org/opends/server/admin/LDAPProfile.java b/opendj-sdk/opends/src/server/org/opends/server/admin/LDAPProfile.java
index 3fb8c8b..5d0d807 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/admin/LDAPProfile.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/admin/LDAPProfile.java
@@ -123,19 +123,6 @@
     /**
      * {@inheritDoc}
      */
-    public String getFilter(AbstractManagedObjectDefinition<?, ?> d) {
-      StringBuilder builder = new StringBuilder();
-      builder.append("(ObjectClass=");
-      builder.append(getObjectClass(d));
-      builder.append(')');
-      return builder.toString();
-    }
-
-
-
-    /**
-     * {@inheritDoc}
-     */
     public String getObjectClass(
         AbstractManagedObjectDefinition<?, ?> d) {
       return resource.getString(d, "objectclass");
@@ -225,19 +212,6 @@
 
 
   /**
-   * Get an LDAP filter string which can be used to search for entries
-   * matching the specified definition.
-   *
-   * @param d
-   *          The managed object definition.
-   * @return Returns the LDAP filter.
-   */
-  public abstract String getFilter(
-      AbstractManagedObjectDefinition<?, ?> d);
-
-
-
-  /**
    * Get the principle object class associated with the specified
    * definition.
    *

--
Gitblit v1.10.0