mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

jdemendi
31.52.2009 713d9fabc5e30e0dd4016328904dca66d75cf7e3
opends/src/server/org/opends/server/core/SearchOperationWrapper.java
@@ -22,7 +22,7 @@
 * CDDL HEADER END
 *
 *
 *      Copyright 2008 Sun Microsystems, Inc.
 *      Copyright 2008-2009 Sun Microsystems, Inc.
 */
package org.opends.server.core;
@@ -70,6 +70,19 @@
  /**
   * {@inheritDoc}
   */
  public boolean returnEntry(Entry entry, List<Control> controls,
                             boolean evaluateAci)
  {
    boolean result;
    result = this.search.returnEntry(entry, controls, evaluateAci);
    return result;
  }
  /**
   * {@inheritDoc}
   */
  public boolean returnReference(DN dn, SearchResultReference reference)
  {
    boolean result;
@@ -82,6 +95,19 @@
  /**
   * {@inheritDoc}
   */
  public boolean returnReference(DN dn, SearchResultReference reference,
                                 boolean evaluateAci)
  {
    boolean result;
    result = this.search.returnReference(dn, reference, evaluateAci);
    return result;
  }
  /**
   * {@inheritDoc}
   */
  public String toString()
  {
    return search.toString();