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

Ludovic Poitou
18.41.2010 1734229125e7bad5f85dfe11d076eeda206236a9
sdk/src/org/opends/sdk/requests/AnonymousSASLBindRequest.java
@@ -33,6 +33,7 @@
import org.opends.sdk.DecodeException;
import org.opends.sdk.DecodeOptions;
import org.opends.sdk.ErrorResultException;
import org.opends.sdk.controls.Control;
import org.opends.sdk.controls.ControlDecoder;
@@ -78,7 +79,7 @@
  /**
   * {@inheritDoc}
   */
  BindClient createBindClient(String serverName);
  BindClient createBindClient(String serverName) throws ErrorResultException;
@@ -143,9 +144,12 @@
   *          The trace information, which has no semantic value, and can be
   *          used by administrators in order to identify the user.
   * @return This bind request.
   * @throws UnsupportedOperationException
   *           If this anonymous SASL request does not permit the trace
   *           information to be set.
   * @throws NullPointerException
   *           If {@code traceString} was {@code null}.
   */
  AnonymousSASLBindRequest setTraceString(String traceString)
      throws NullPointerException;
      throws UnsupportedOperationException, NullPointerException;
}