From 30f5175327333dcfaaeafb02560697bcdce6166d Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Mon, 30 Apr 2007 16:24:15 +0000
Subject: [PATCH] Implement support for the virtual list view (VLV) control as defined in draft-ietf-ldapext-ldapv3-vlv. This can be used to retrieve a specified page of a search result set. Any result set that can be used with server-side sorting can also be used with VLV. The ldapsearch tool has also been updated to support this control.
---
opends/src/server/org/opends/server/util/ServerConstants.java | 16 ++++++++++++++++
1 files changed, 16 insertions(+), 0 deletions(-)
diff --git a/opends/src/server/org/opends/server/util/ServerConstants.java b/opends/src/server/org/opends/server/util/ServerConstants.java
index 8f49118..79cc242 100644
--- a/opends/src/server/org/opends/server/util/ServerConstants.java
+++ b/opends/src/server/org/opends/server/util/ServerConstants.java
@@ -1851,6 +1851,22 @@
+ /**
+ * The OID for the virtual list view request control.
+ */
+ public static final String OID_VLV_REQUEST_CONTROL =
+ "2.16.840.1.113730.3.4.9";
+
+
+
+ /**
+ * The OID for the virtual list view request control.
+ */
+ public static final String OID_VLV_RESPONSE_CONTROL =
+ "2.16.840.1.113730.3.4.10";
+
+
+
/**
* The block length in bytes used when generating an HMAC-MD5 digest.
--
Gitblit v1.10.0