From f571f9d7e26584b4e25ad6f113d090ba9e86d0ac Mon Sep 17 00:00:00 2001
From: Matthew Swift <matthew.swift@forgerock.com>
Date: Wed, 14 Sep 2011 09:35:42 +0000
Subject: [PATCH] Fix OPENDJ-280: Add support for the LDAP sub-entry control as defined in draft-ietf-ldup-subentry

---
 opends/src/server/org/opends/server/util/ServerConstants.java |   13 +++++++++++--
 1 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/opends/src/server/org/opends/server/util/ServerConstants.java b/opends/src/server/org/opends/server/util/ServerConstants.java
index 24b5afc..c5b9d10 100644
--- a/opends/src/server/org/opends/server/util/ServerConstants.java
+++ b/opends/src/server/org/opends/server/util/ServerConstants.java
@@ -2273,14 +2273,23 @@
 
 
   /**
-   * The OID for the LDAP subentries control used to indicate that matching
-   * subentries should be returned.
+   * The OID for the LDAP subentries control as defined in RFC 3672, which is
+   * used to indicate that matching subentries should be returned.
    */
   public static final String OID_LDAP_SUBENTRIES = "1.3.6.1.4.1.4203.1.10.1";
 
 
 
   /**
+   * The OID for the LDAP subentries control as defined in the legacy
+   * draft-ietf-ldup-subentry internet draft, which is used to indicate that
+   * matching subentries should be returned.
+   */
+  public static final String OID_LDUP_SUBENTRIES = "1.3.6.1.4.1.7628.5.101.1";
+
+
+
+  /**
    * The OID for the matched values control used to specify which particular
    * attribute values should be returned in a search result entry.
    */

--
Gitblit v1.10.0