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

Matthew Swift
03.05.2012 41e72531b209b74571589296a3a33354eb2a1c39
opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/requests/AbandonRequest.java
@@ -23,6 +23,7 @@
 *
 *
 *      Copyright 2009-2010 Sun Microsystems, Inc.
 *      Portions copyright 2012 ForgeRock AS.
 */
package org.forgerock.opendj.ldap.requests;
@@ -49,8 +50,7 @@
  /**
   * {@inheritDoc}
   */
  AbandonRequest addControl(Control control)
      throws UnsupportedOperationException, NullPointerException;
  AbandonRequest addControl(Control control);
@@ -58,7 +58,7 @@
   * {@inheritDoc}
   */
  <C extends Control> C getControl(ControlDecoder<C> decoder,
      DecodeOptions options) throws NullPointerException, DecodeException;
      DecodeOptions options) throws DecodeException;
@@ -87,6 +87,6 @@
   * @throws UnsupportedOperationException
   *           If this abandon request does not permit the request ID to be set.
   */
  AbandonRequest setRequestID(int id) throws UnsupportedOperationException;
  AbandonRequest setRequestID(int id);
}