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

Ludovic Poitou
22.03.2010 61960107e0dd01b4d5ee1143c7b0d3ac846764df
opendj-sdk/sdk/src/org/opends/sdk/responses/GenericIntermediateResponseImpl.java
@@ -39,7 +39,7 @@
 * Generic intermediate response implementation.
 */
final class GenericIntermediateResponseImpl extends
    AbstractIntermediateResponse<GenericIntermediateResponse> implements
    AbstractIntermediateResponseImpl<GenericIntermediateResponse> implements
    GenericIntermediateResponse
{
@@ -72,6 +72,26 @@
  /**
   * Creates a new generic intermediate response that is an exact copy of the
   * provided result.
   *
   * @param genericIntermediateResponse
   *          The generic intermediate response to be copied.
   * @throws NullPointerException
   *           If {@code genericExtendedResult} was {@code null} .
   */
  GenericIntermediateResponseImpl(
      final GenericIntermediateResponse genericIntermediateResponse)
      throws NullPointerException
  {
    super(genericIntermediateResponse);
    this.responseName = genericIntermediateResponse.getOID();
    this.responseValue = genericIntermediateResponse.getValue();
  }
  /**
   * {@inheritDoc}
   */
  @Override