From c0b4060d4467969abf721756f1907653519b62b3 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.
---
opends/src/server/org/opends/server/protocols/internal/InternalClientConnection.java | 10 ++++++++++
1 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/opends/src/server/org/opends/server/protocols/internal/InternalClientConnection.java b/opends/src/server/org/opends/server/protocols/internal/InternalClientConnection.java
index 9c64150..cfdf825 100644
--- a/opends/src/server/org/opends/server/protocols/internal/InternalClientConnection.java
+++ b/opends/src/server/org/opends/server/protocols/internal/InternalClientConnection.java
@@ -1324,9 +1324,14 @@
* entry is associated.
* @param searchEntry The search result entry to be sent to
* the client.
+ *
+ * @throws DirectoryException If a problem occurs while processing
+ * the entry and the search should be
+ * terminated.
*/
public void sendSearchEntry(SearchOperation searchOperation,
SearchResultEntry searchEntry)
+ throws DirectoryException
{
((InternalSearchOperation) searchOperation).
addSearchEntry(searchEntry);
@@ -1346,9 +1351,14 @@
* 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 processing
+ * the entry and the search should be
+ * terminated.
*/
public boolean sendSearchReference(SearchOperation searchOperation,
SearchResultReference searchReference)
+ throws DirectoryException
{
((InternalSearchOperation)
searchOperation).addSearchReference(searchReference);
--
Gitblit v1.10.0