From c179022074f9136fc38367f31b9843a74c529334 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Tue, 20 Mar 2007 23:09:54 +0000
Subject: [PATCH] Add support for dynamic groups, which use the groupOfURLs object class and the memberURL attribute type to specify one or more LDAP URLs containing criteria for membership.
---
opendj-sdk/opends/src/server/org/opends/server/api/ClientConnection.java | 14 ++++++++++++--
1 files changed, 12 insertions(+), 2 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/api/ClientConnection.java b/opendj-sdk/opends/src/server/org/opends/server/api/ClientConnection.java
index d1ca3a3..b5dd809 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/api/ClientConnection.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/api/ClientConnection.java
@@ -412,10 +412,15 @@
* entry is associated.
* @param searchEntry The search result entry to be sent to
* the client.
+ *
+ * @throws DirectoryException If a problem occurs while attempting
+ * to send the entry to the client and
+ * the search should be terminated.
*/
public abstract void sendSearchEntry(
SearchOperation searchOperation,
- SearchResultEntry searchEntry);
+ SearchResultEntry searchEntry)
+ throws DirectoryException;
@@ -431,10 +436,15 @@
* referrals, or <CODE>false</CODE> if the client cannot
* handle referrals and no more attempts should be made to
* send them for the associated search operation.
+ *
+ * @throws DirectoryException If a problem occurs while attempting
+ * to send the reference to the client
+ * and the search should be terminated.
*/
public abstract boolean sendSearchReference(
SearchOperation searchOperation,
- SearchResultReference searchReference);
+ SearchResultReference searchReference)
+ throws DirectoryException;
--
Gitblit v1.10.0