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

Jean-Noel Rouvignac
04.08.2013 7e5ca61ac195cb92e37895a83abddc29e98ac78a
opends/src/server/org/opends/server/core/SearchOperationWrapper.java
@@ -27,14 +27,12 @@
 */
package org.opends.server.core;
import java.util.List;
import java.util.Set;
import org.opends.server.controls.MatchedValuesControl;
import org.opends.server.types.*;
/**
 * This abstract class wraps/decorates a given search operation.
 * This class will be extended by sub-classes to enhance the
@@ -303,7 +301,7 @@
   * {@inheritDoc}
   */
  @Override
  public void setTimeLimitExpiration(Long timeLimitExpiration)
  public void setTimeLimitExpiration(long timeLimitExpiration)
  {
    getOperation().setTimeLimitExpiration(timeLimitExpiration);
  }
@@ -366,7 +364,7 @@
   * {@inheritDoc}
   */
  @Override
  public Long getTimeLimitExpiration()
  public long getTimeLimitExpiration()
  {
    return getOperation().getTimeLimitExpiration();
  }
@@ -445,7 +443,8 @@
   * {@inheritDoc}
   */
  @Override
  public boolean isVirtualAttributesOnly(){
  public boolean isVirtualAttributesOnly()
  {
    return getOperation().isVirtualAttributesOnly();
  }
@@ -462,8 +461,8 @@
   */
  @Override
  public void sendSearchEntry(SearchResultEntry entry)
    throws DirectoryException
    {
      throws DirectoryException
  {
    getOperation().sendSearchEntry(entry);
  }
@@ -472,8 +471,8 @@
   */
  @Override
  public boolean sendSearchReference(SearchResultReference reference)
    throws DirectoryException
    {
      throws DirectoryException
  {
    return getOperation().sendSearchReference(reference);
  }