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

Ludovic Poitou
22.03.2010 887e246785056b972a725b5ef8457980325216fb
sdk/src/org/opends/sdk/responses/GenericExtendedResultImpl.java
@@ -40,7 +40,7 @@
 * Generic extended result implementation.
 */
final class GenericExtendedResultImpl extends
    AbstractResultImpl<GenericExtendedResult> implements ExtendedResult,
    AbstractExtendedResultImpl<GenericExtendedResult> implements ExtendedResult,
    GenericExtendedResult
{
@@ -67,6 +67,25 @@
  /**
   * Creates a new generic extended result that is an exact copy of the provided
   * result.
   *
   * @param genericExtendedResult
   *          The generic extended result to be copied.
   * @throws NullPointerException
   *           If {@code genericExtendedResult} was {@code null} .
   */
  GenericExtendedResultImpl(final GenericExtendedResult genericExtendedResult)
      throws NullPointerException
  {
    super(genericExtendedResult);
    this.responseName = genericExtendedResult.getOID();
    this.responseValue = genericExtendedResult.getValue();
  }
  /**
   * {@inheritDoc}
   */
  public String getOID()
@@ -147,12 +166,4 @@
    builder.append(")");
    return builder.toString();
  }
  @Override
  GenericExtendedResult getThis()
  {
    return this;
  }
}