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/GenericBindRequest.java
@@ -43,19 +43,14 @@
 * {@link ResultCode#AUTH_METHOD_NOT_SUPPORTED}.
 */
public interface GenericBindRequest extends BindRequest {
    /**
     * {@inheritDoc}
     */
    @Override
    GenericBindRequest addControl(Control control);
    /**
     * {@inheritDoc}
     */
    @Override
    BindClient createBindClient(String serverName) throws ErrorResultException;
    /**
     * {@inheritDoc}
     */
    @Override
    byte getAuthenticationType();
    /**
@@ -70,20 +65,14 @@
     */
    byte[] getAuthenticationValue();
    /**
     * {@inheritDoc}
     */
    @Override
    <C extends Control> C getControl(ControlDecoder<C> decoder, DecodeOptions options)
            throws DecodeException;
    /**
     * {@inheritDoc}
     */
    @Override
    List<Control> getControls();
    /**
     * {@inheritDoc}
     */
    @Override
    String getName();
    /**