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/SimpleBindRequest.java
@@ -68,14 +68,11 @@
 * </pre>
 */
public interface SimpleBindRequest extends BindRequest {
    /**
     * {@inheritDoc}
     */
    @Override
    SimpleBindRequest addControl(Control control);
    /**
     * {@inheritDoc}
     */
    @Override
    BindClient createBindClient(String serverName) throws ErrorResultException;
    /**
@@ -84,22 +81,17 @@
     *
     * @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();
    /**
     * {@inheritDoc}
     */
    @Override
    String getName();
    /**