From 263d085885df024dca9250cc03c807912b0a7662 Mon Sep 17 00:00:00 2001
From: Matthew Swift <matthew.swift@forgerock.com>
Date: Tue, 24 Apr 2012 22:33:21 +0000
Subject: [PATCH] Reformat to comply with new Checkstyle rules.
---
opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/requests/AddRequestImpl.java | 505 +++++++++++++++++++++++--------------------------------
1 files changed, 210 insertions(+), 295 deletions(-)
diff --git a/opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/requests/AddRequestImpl.java b/opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/requests/AddRequestImpl.java
index 1661f1c..35b24eb 100644
--- a/opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/requests/AddRequestImpl.java
+++ b/opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/requests/AddRequestImpl.java
@@ -6,17 +6,16 @@
* (the "License"). You may not use this file except in compliance
* with the License.
*
- * You can obtain a copy of the license at
- * trunk/opendj3/legal-notices/CDDLv1_0.txt
+ * You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
* or http://forgerock.org/license/CDDLv1.0.html.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
- * file and include the License file at
- * trunk/opendj3/legal-notices/CDDLv1_0.txt. If applicable,
- * add the following below this CDDL HEADER, with the fields enclosed
- * by brackets "[]" replaced with your own identifying information:
+ * file and include the License file at legal-notices/CDDLv1_0.txt.
+ * If applicable, add the following below this CDDL HEADER, with the
+ * fields enclosed by brackets "[]" replaced with your own identifying
+ * information:
* Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
@@ -28,329 +27,245 @@
package org.forgerock.opendj.ldap.requests;
-
-
import java.util.Collection;
-import org.forgerock.opendj.ldap.*;
+import org.forgerock.opendj.ldap.Attribute;
+import org.forgerock.opendj.ldap.AttributeDescription;
+import org.forgerock.opendj.ldap.ByteString;
+import org.forgerock.opendj.ldap.DN;
+import org.forgerock.opendj.ldap.Entry;
+import org.forgerock.opendj.ldap.LinkedHashMapEntry;
import org.forgerock.opendj.ldif.ChangeRecordVisitor;
-
-
/**
* Add request implementation.
*/
-final class AddRequestImpl extends AbstractRequestImpl<AddRequest> implements
- AddRequest
-{
+final class AddRequestImpl extends AbstractRequestImpl<AddRequest> implements AddRequest {
- private final Entry entry;
+ private final Entry entry;
+ /**
+ * Creates a new add request backed by the provided entry. Modifications
+ * made to {@code entry} will be reflected in the returned add request. The
+ * returned add request supports updates to its list of controls, as well as
+ * updates to the name and attributes if the underlying entry allows.
+ *
+ * @param entry
+ * The entry to be added.
+ * @throws NullPointerException
+ * If {@code entry} was {@code null} .
+ */
+ AddRequestImpl(final Entry entry) {
+ this.entry = entry;
+ }
+ /**
+ * Creates a new add request that is an exact copy of the provided request.
+ *
+ * @param addRequest
+ * The add request to be copied.
+ * @throws NullPointerException
+ * If {@code addRequest} was {@code null} .
+ */
+ AddRequestImpl(final AddRequest addRequest) {
+ super(addRequest);
+ this.entry = LinkedHashMapEntry.deepCopyOfEntry(addRequest);
+ }
- /**
- * Creates a new add request backed by the provided entry. Modifications made
- * to {@code entry} will be reflected in the returned add request. The
- * returned add request supports updates to its list of controls, as well as
- * updates to the name and attributes if the underlying entry allows.
- *
- * @param entry
- * The entry to be added.
- * @throws NullPointerException
- * If {@code entry} was {@code null} .
- */
- AddRequestImpl(final Entry entry)
- {
- this.entry = entry;
- }
+ /**
+ * {@inheritDoc}
+ */
+ public <R, P> R accept(final ChangeRecordVisitor<R, P> v, final P p) {
+ return v.visitChangeRecord(p, this);
+ }
+ /**
+ * {@inheritDoc}
+ */
+ public boolean addAttribute(final Attribute attribute) {
+ return entry.addAttribute(attribute);
+ }
+ /**
+ * {@inheritDoc}
+ */
+ public boolean addAttribute(final Attribute attribute,
+ final Collection<ByteString> duplicateValues) {
+ return entry.addAttribute(attribute, duplicateValues);
+ }
- /**
- * Creates a new add request that is an exact copy of the provided
- * request.
- *
- * @param addRequest
- * The add request to be copied.
- * @throws NullPointerException
- * If {@code addRequest} was {@code null} .
- */
- AddRequestImpl(final AddRequest addRequest)
- {
- super(addRequest);
- this.entry = LinkedHashMapEntry.deepCopyOfEntry(addRequest);
- }
+ /**
+ * {@inheritDoc}
+ */
+ public AddRequest addAttribute(final String attributeDescription, final Object... values) {
+ entry.addAttribute(attributeDescription, values);
+ return this;
+ }
+ /**
+ * {@inheritDoc}
+ */
+ public AddRequest clearAttributes() {
+ entry.clearAttributes();
+ return this;
+ }
+ /**
+ * {@inheritDoc}
+ */
+ public boolean containsAttribute(final Attribute attribute,
+ final Collection<ByteString> missingValues) {
+ return entry.containsAttribute(attribute, missingValues);
+ }
- /**
- * {@inheritDoc}
- */
- public <R, P> R accept(final ChangeRecordVisitor<R, P> v, final P p)
- {
- return v.visitChangeRecord(p, this);
- }
+ /**
+ * {@inheritDoc}
+ */
+ public boolean containsAttribute(final String attributeDescription, final Object... values) {
+ return entry.containsAttribute(attributeDescription, values);
+ }
+ /**
+ * {@inheritDoc}
+ */
+ public Iterable<Attribute> getAllAttributes() {
+ return entry.getAllAttributes();
+ }
+ /**
+ * {@inheritDoc}
+ */
+ public Iterable<Attribute> getAllAttributes(final AttributeDescription attributeDescription) {
+ return entry.getAllAttributes(attributeDescription);
+ }
- /**
- * {@inheritDoc}
- */
- public boolean addAttribute(final Attribute attribute)
- {
- return entry.addAttribute(attribute);
- }
+ /**
+ * {@inheritDoc}
+ */
+ public Iterable<Attribute> getAllAttributes(final String attributeDescription) {
+ return entry.getAllAttributes(attributeDescription);
+ }
+ /**
+ * {@inheritDoc}
+ */
+ public Attribute getAttribute(final AttributeDescription attributeDescription) {
+ return entry.getAttribute(attributeDescription);
+ }
+ /**
+ * {@inheritDoc}
+ */
+ public Attribute getAttribute(final String attributeDescription) {
+ return entry.getAttribute(attributeDescription);
+ }
- /**
- * {@inheritDoc}
- */
- public boolean addAttribute(final Attribute attribute,
- final Collection<ByteString> duplicateValues)
- {
- return entry.addAttribute(attribute, duplicateValues);
- }
+ /**
+ * {@inheritDoc}
+ */
+ public int getAttributeCount() {
+ return entry.getAttributeCount();
+ }
+ /**
+ * {@inheritDoc}
+ */
+ public DN getName() {
+ return entry.getName();
+ }
+ /**
+ * {@inheritDoc}
+ */
+ public boolean removeAttribute(final Attribute attribute,
+ final Collection<ByteString> missingValues) {
+ return entry.removeAttribute(attribute, missingValues);
+ }
- /**
- * {@inheritDoc}
- */
- public AddRequest addAttribute(final String attributeDescription,
- final Object... values)
- {
- entry.addAttribute(attributeDescription, values);
- return this;
- }
+ /**
+ * {@inheritDoc}
+ */
+ public boolean removeAttribute(final AttributeDescription attributeDescription) {
+ return entry.removeAttribute(attributeDescription);
+ }
+ /**
+ * {@inheritDoc}
+ */
+ public AddRequest removeAttribute(final String attributeDescription, final Object... values) {
+ entry.removeAttribute(attributeDescription, values);
+ return this;
+ }
+ /**
+ * {@inheritDoc}
+ */
+ public boolean replaceAttribute(final Attribute attribute) {
+ return entry.replaceAttribute(attribute);
+ }
- /**
- * {@inheritDoc}
- */
- public AddRequest clearAttributes()
- {
- entry.clearAttributes();
- return this;
- }
+ /**
+ * {@inheritDoc}
+ */
+ public AddRequest replaceAttribute(final String attributeDescription, final Object... values) {
+ entry.replaceAttribute(attributeDescription, values);
+ return this;
+ }
+ /**
+ * {@inheritDoc}
+ */
+ public AddRequest setName(final DN dn) {
+ entry.setName(dn);
+ return this;
+ }
+ /**
+ * {@inheritDoc}
+ */
+ public AddRequest setName(final String dn) {
+ entry.setName(dn);
+ return this;
+ }
- /**
- * {@inheritDoc}
- */
- public boolean containsAttribute(final Attribute attribute,
- final Collection<ByteString> missingValues)
- {
- return entry.containsAttribute(attribute, missingValues);
- }
-
-
-
- /**
- * {@inheritDoc}
- */
- public boolean containsAttribute(final String attributeDescription,
- final Object... values)
- {
- return entry.containsAttribute(attributeDescription, values);
- }
-
-
-
- /**
- * {@inheritDoc}
- */
- public Iterable<Attribute> getAllAttributes()
- {
- return entry.getAllAttributes();
- }
-
-
-
- /**
- * {@inheritDoc}
- */
- public Iterable<Attribute> getAllAttributes(
- final AttributeDescription attributeDescription)
- {
- return entry.getAllAttributes(attributeDescription);
- }
-
-
-
- /**
- * {@inheritDoc}
- */
- public Iterable<Attribute> getAllAttributes(final String attributeDescription)
- {
- return entry.getAllAttributes(attributeDescription);
- }
-
-
-
- /**
- * {@inheritDoc}
- */
- public Attribute getAttribute(final AttributeDescription attributeDescription)
- {
- return entry.getAttribute(attributeDescription);
- }
-
-
-
- /**
- * {@inheritDoc}
- */
- public Attribute getAttribute(final String attributeDescription)
- {
- return entry.getAttribute(attributeDescription);
- }
-
-
-
- /**
- * {@inheritDoc}
- */
- public int getAttributeCount()
- {
- return entry.getAttributeCount();
- }
-
-
-
- /**
- * {@inheritDoc}
- */
- public DN getName()
- {
- return entry.getName();
- }
-
-
-
- /**
- * {@inheritDoc}
- */
- public boolean removeAttribute(final Attribute attribute,
- final Collection<ByteString> missingValues)
- {
- return entry.removeAttribute(attribute, missingValues);
- }
-
-
-
- /**
- * {@inheritDoc}
- */
- public boolean removeAttribute(final AttributeDescription attributeDescription)
- {
- return entry.removeAttribute(attributeDescription);
- }
-
-
-
- /**
- * {@inheritDoc}
- */
- public AddRequest removeAttribute(final String attributeDescription,
- final Object... values)
- {
- entry.removeAttribute(attributeDescription, values);
- return this;
- }
-
-
-
- /**
- * {@inheritDoc}
- */
- public boolean replaceAttribute(final Attribute attribute)
- {
- return entry.replaceAttribute(attribute);
- }
-
-
-
- /**
- * {@inheritDoc}
- */
- public AddRequest replaceAttribute(final String attributeDescription,
- final Object... values)
- {
- entry.replaceAttribute(attributeDescription, values);
- return this;
- }
-
-
-
- /**
- * {@inheritDoc}
- */
- public AddRequest setName(final DN dn)
- {
- entry.setName(dn);
- return this;
- }
-
-
-
- /**
- * {@inheritDoc}
- */
- public AddRequest setName(final String dn)
- {
- entry.setName(dn);
- return this;
- }
-
-
-
- /**
- * {@inheritDoc}
- */
- @Override
- public String toString()
- {
- final StringBuilder builder = new StringBuilder();
- builder.append("AddRequest(name=");
- builder.append(getName());
- builder.append(", attributes=");
- builder.append(getAllAttributes());
- builder.append(", controls=");
- builder.append(getControls());
- builder.append(")");
- return builder.toString();
- }
-
-
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ public String toString() {
+ final StringBuilder builder = new StringBuilder();
+ builder.append("AddRequest(name=");
+ builder.append(getName());
+ builder.append(", attributes=");
+ builder.append(getAllAttributes());
+ builder.append(", controls=");
+ builder.append(getControls());
+ builder.append(")");
+ return builder.toString();
+ }
- /**
- * {@inheritDoc}
- */
- @Override
- AddRequest getThis()
- {
- return this;
- }
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ AddRequest getThis() {
+ return this;
+ }
- /**
- * {@inheritDoc}
- */
- @Override
- public int hashCode()
- {
- return entry.hashCode();
- }
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ public int hashCode() {
+ return entry.hashCode();
+ }
- /**
- * {@inheritDoc}
- */
- @Override
- public boolean equals(final Object object)
- {
- return entry.equals(object);
- }
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ public boolean equals(final Object object) {
+ return entry.equals(object);
+ }
}
--
Gitblit v1.10.0