From b53da04d63554049e5b3895321b994c9c20b140a Mon Sep 17 00:00:00 2001
From: Matthew Swift <matthew.swift@forgerock.com>
Date: Fri, 12 Apr 2013 14:45:05 +0000
Subject: [PATCH] Fix issue OPENDJ-861: Etag attribute invalid when used in conjunction with pre- and post- read controls
---
opends/src/server/org/opends/server/core/SearchOperation.java | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/opends/src/server/org/opends/server/core/SearchOperation.java b/opends/src/server/org/opends/server/core/SearchOperation.java
index 5a1ec3a..fd86b41 100644
--- a/opends/src/server/org/opends/server/core/SearchOperation.java
+++ b/opends/src/server/org/opends/server/core/SearchOperation.java
@@ -23,12 +23,12 @@
*
*
* Copyright 2006-2009 Sun Microsystems, Inc.
- * Portions Copyright 2011 ForgeRock AS
+ * Portions Copyright 2011-2013 ForgeRock AS
*/
package org.opends.server.core;
-import java.util.LinkedHashSet;
import java.util.List;
+import java.util.Set;
import org.opends.server.controls.MatchedValuesControl;
import org.opends.server.types.*;
@@ -196,7 +196,7 @@
*
* @return The set of requested attributes for this search operation.
*/
- public abstract LinkedHashSet<String> getAttributes();
+ public abstract Set<String> getAttributes();
/**
* Specifies the set of requested attributes for this search operation. It
@@ -205,7 +205,7 @@
* @param attributes The set of requested attributes for this search
* operation.
*/
- public abstract void setAttributes(LinkedHashSet<String> attributes);
+ public abstract void setAttributes(Set<String> attributes);
/**
* Retrieves the number of entries sent to the client for this search
--
Gitblit v1.10.0