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

matthew_swift
05.42.2009 22094368c2865dcfb6daf8366425212b721a4657
opends/src/server/org/opends/server/core/BindOperationWrapper.java
@@ -28,13 +28,7 @@
import org.opends.messages.Message;
import org.opends.server.protocols.asn1.ASN1OctetString;
import org.opends.server.types.AuthenticationInfo;
import org.opends.server.types.AuthenticationType;
import org.opends.server.types.ByteString;
import org.opends.server.types.DN;
import org.opends.server.types.Entry;
import org.opends.server.types.*;
/**
@@ -110,7 +104,7 @@
  /**
   * {@inheritDoc}
   */
  public ASN1OctetString getSASLCredentials()
  public ByteString getSASLCredentials()
  {
    return bind.getSASLCredentials();
  }
@@ -126,7 +120,7 @@
  /**
   * {@inheritDoc}
   */
  public ASN1OctetString getServerSASLCredentials()
  public ByteString getServerSASLCredentials()
  {
    return bind.getServerSASLCredentials();
  }
@@ -190,7 +184,7 @@
   * {@inheritDoc}
   */
  public void setSASLCredentials(String saslMechanism,
      ASN1OctetString saslCredentials)
      ByteString saslCredentials)
  {
    bind.setSASLCredentials(saslMechanism, saslCredentials);
  }
@@ -198,7 +192,7 @@
  /**
   * {@inheritDoc}
   */
  public void setServerSASLCredentials(ASN1OctetString serverSASLCredentials)
  public void setServerSASLCredentials(ByteString serverSASLCredentials)
  {
    bind.setServerSASLCredentials(serverSASLCredentials);
  }