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

Nicolas Capponi
21.22.2014 80e2d352bedcafd7b83fc85f07239655fadb66dd
opends/src/server/org/opends/server/core/SearchOperationWrapper.java
@@ -22,13 +22,14 @@
 *
 *
 *      Copyright 2008-2009 Sun Microsystems, Inc.
 *      Portions Copyright 2011-2013 ForgeRock AS
 *      Portions Copyright 2011-2014 ForgeRock AS
 */
package org.opends.server.core;
import java.util.List;
import java.util.Set;
import org.opends.server.controls.ExternalChangelogRequestControl;
import org.opends.server.controls.MatchedValuesControl;
import org.opends.server.types.*;
@@ -492,4 +493,18 @@
    getOperation().setProxiedAuthorizationDN(proxiedAuthorizationDN);
  }
  /** {@inheritDoc} */
  @Override
  public ExternalChangelogRequestControl getECLRequestControl()
  {
    return getOperation().getECLRequestControl();
  }
  /** {@inheritDoc} */
  @Override
  public void setECLRequestControl(ExternalChangelogRequestControl control)
  {
    getOperation().setECLRequestControl(control);
  }
}