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

Matthew Swift
29.55.2013 4aa1cf5e26d49ab1273d6affc58a5ac70b870ec4
opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/requests/SASLBindRequest.java
@@ -45,14 +45,11 @@
 *      SASL Authorization Identities (authzId) </a>
 */
public interface SASLBindRequest extends BindRequest {
    /**
     * {@inheritDoc}
     */
    @Override
    SASLBindRequest addControl(Control control);
    /**
     * {@inheritDoc}
     */
    @Override
    BindClient createBindClient(String serverName) throws ErrorResultException;
    /**
@@ -61,17 +58,14 @@
     *
     * @return The authentication mechanism identifier.
     */
    @Override
    byte getAuthenticationType();
    /**
     * {@inheritDoc}
     */
    @Override
    <C extends Control> C getControl(ControlDecoder<C> decoder, DecodeOptions options)
            throws DecodeException;
    /**
     * {@inheritDoc}
     */
    @Override
    List<Control> getControls();
    /**
@@ -81,6 +75,7 @@
     * @return The name of the Directory object that the client wishes to bind
     *         as.
     */
    @Override
    String getName();
    /**