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/UnbindRequest.java
@@ -38,19 +38,14 @@
 * The Unbind operation allows a client to terminate an LDAP session.
 */
public interface UnbindRequest extends Request {
    /**
     * {@inheritDoc}
     */
    @Override
    UnbindRequest addControl(Control control);
    /**
     * {@inheritDoc}
     */
    @Override
    <C extends Control> C getControl(ControlDecoder<C> decoder, DecodeOptions options)
            throws DecodeException;
    /**
     * {@inheritDoc}
     */
    @Override
    List<Control> getControls();
}