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

matthew_swift
28.47.2010 f2160f4bd1c8ac67e5a86a6710d431e8932877f9
sdk/src/org/opends/sdk/requests/DeleteRequestImpl.java
@@ -40,8 +40,8 @@
/**
 * Delete request implementation.
 */
final class DeleteRequestImpl extends
    AbstractRequestImpl<DeleteRequest> implements DeleteRequest
final class DeleteRequestImpl extends AbstractRequestImpl<DeleteRequest>
    implements DeleteRequest
{
  private DN name;
@@ -49,13 +49,13 @@
  /**
   * Creates a new delete request using the provided distinguished name.
   *
   *
   * @param name
   *          The distinguished name of the entry to be deleted.
   * @throws NullPointerException
   *           If {@code name} was {@code null}.
   */
  DeleteRequestImpl(DN name) throws NullPointerException
  DeleteRequestImpl(final DN name) throws NullPointerException
  {
    this.name = name;
  }
@@ -65,7 +65,7 @@
  /**
   * {@inheritDoc}
   */
  public <R, P> R accept(ChangeRecordVisitor<R, P> v, P p)
  public <R, P> R accept(final ChangeRecordVisitor<R, P> v, final P p)
  {
    return v.visitChangeRecord(p, this);
  }
@@ -85,7 +85,7 @@
  /**
   * {@inheritDoc}
   */
  public DeleteRequest setName(DN dn)
  public DeleteRequest setName(final DN dn)
      throws UnsupportedOperationException, NullPointerException
  {
    Validator.ensureNotNull(dn);
@@ -98,9 +98,9 @@
  /**
   * {@inheritDoc}
   */
  public DeleteRequest setName(String dn)
      throws LocalizedIllegalArgumentException,
      UnsupportedOperationException, NullPointerException
  public DeleteRequest setName(final String dn)
      throws LocalizedIllegalArgumentException, UnsupportedOperationException,
      NullPointerException
  {
    Validator.ensureNotNull(dn);
    this.name = DN.valueOf(dn);
@@ -126,6 +126,7 @@
  @Override
  DeleteRequest getThis()
  {
    return this;