/* * CDDL HEADER START * * The contents of this file are subject to the terms of the * Common Development and Distribution License, Version 1.0 only * (the "License"). You may not use this file except in compliance * with the License. * * You can obtain a copy of the license at * trunk/opends/resource/legal-notices/OpenDS.LICENSE * or https://OpenDS.dev.java.net/OpenDS.LICENSE. * 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/opends/resource/legal-notices/OpenDS.LICENSE. 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 * * * Copyright 2009 Sun Microsystems, Inc. */ package org.opends.sdk.requests; import java.util.Collection; import org.opends.sdk.*; import org.opends.sdk.ldif.ChangeRecordVisitor; import org.opends.sdk.schema.ObjectClass; /** * Add request implementation. */ final class AddRequestImpl extends AbstractRequestImpl implements AddRequest { 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(Entry entry) throws NullPointerException { this.entry = entry; } /** * {@inheritDoc} */ public R accept(ChangeRecordVisitor v, P p) { return v.visitChangeRecord(p, this); } /** * {@inheritDoc} */ public boolean addAttribute(Attribute attribute) throws UnsupportedOperationException, NullPointerException { return entry.addAttribute(attribute); } /** * {@inheritDoc} */ public boolean addAttribute(Attribute attribute, Collection duplicateValues) throws UnsupportedOperationException, NullPointerException { return entry.addAttribute(attribute, duplicateValues); } /** * {@inheritDoc} */ public AddRequestImpl addAttribute(String attributeDescription, Object... values) throws LocalizedIllegalArgumentException, UnsupportedOperationException, NullPointerException { entry.addAttribute(attributeDescription, values); return this; } /** * {@inheritDoc} */ public AddRequestImpl clearAttributes() throws UnsupportedOperationException { entry.clearAttributes(); return this; } /** * {@inheritDoc} */ public boolean containsAttribute( AttributeDescription attributeDescription) throws NullPointerException { return entry.containsAttribute(attributeDescription); } /** * {@inheritDoc} */ public boolean containsAttribute(String attributeDescription) throws LocalizedIllegalArgumentException, NullPointerException { return entry.containsAttribute(attributeDescription); } /** * {@inheritDoc} */ public boolean containsObjectClass(ObjectClass objectClass) throws NullPointerException { return entry.containsObjectClass(objectClass); } /** * {@inheritDoc} */ public boolean containsObjectClass(String objectClass) throws NullPointerException { return entry.containsObjectClass(objectClass); } /** * {@inheritDoc} */ public Iterable findAttributes( AttributeDescription attributeDescription) throws NullPointerException { return entry.findAttributes(attributeDescription); } /** * {@inheritDoc} */ public Iterable findAttributes(String attributeDescription) throws LocalizedIllegalArgumentException, NullPointerException { return entry.findAttributes(attributeDescription); } /** * {@inheritDoc} */ public Attribute getAttribute( AttributeDescription attributeDescription) throws NullPointerException { return entry.getAttribute(attributeDescription); } /** * {@inheritDoc} */ public Attribute getAttribute(String attributeDescription) throws LocalizedIllegalArgumentException, NullPointerException { return entry.getAttribute(attributeDescription); } /** * {@inheritDoc} */ public int getAttributeCount() { return entry.getAttributeCount(); } /** * {@inheritDoc} */ public Iterable getAttributes() { return entry.getAttributes(); } /** * {@inheritDoc} */ public DN getName() { return entry.getName(); } /** * {@inheritDoc} */ public Iterable getObjectClasses() { return entry.getObjectClasses(); } /** * {@inheritDoc} */ public boolean removeAttribute(Attribute attribute, Collection missingValues) throws UnsupportedOperationException, NullPointerException { return entry.removeAttribute(attribute, missingValues); } /** * {@inheritDoc} */ public boolean removeAttribute( AttributeDescription attributeDescription) throws UnsupportedOperationException, NullPointerException { return entry.removeAttribute(attributeDescription); } /** * {@inheritDoc} */ public AddRequestImpl removeAttribute(String attributeDescription) throws LocalizedIllegalArgumentException, UnsupportedOperationException, NullPointerException { entry.removeAttribute(attributeDescription); return this; } /** * {@inheritDoc} */ public AddRequestImpl removeAttribute(String attributeDescription, Object... values) throws LocalizedIllegalArgumentException, UnsupportedOperationException, NullPointerException { entry.removeAttribute(attributeDescription, values); return this; } /** * {@inheritDoc} */ public boolean replaceAttribute(Attribute attribute) throws UnsupportedOperationException, NullPointerException { return entry.replaceAttribute(attribute); } /** * {@inheritDoc} */ public AddRequestImpl replaceAttribute(String attributeDescription, Object... values) throws LocalizedIllegalArgumentException, UnsupportedOperationException, NullPointerException { entry.replaceAttribute(attributeDescription, values); return this; } /** * {@inheritDoc} */ public AddRequestImpl setName(DN dn) throws UnsupportedOperationException, NullPointerException { entry.setName(dn); return this; } /** * {@inheritDoc} */ public AddRequestImpl setName(String dn) throws LocalizedIllegalArgumentException, UnsupportedOperationException, NullPointerException { 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(getAttributes()); builder.append(", controls="); builder.append(getControls()); builder.append(")"); return builder.toString(); } AddRequest getThis() { return this; } }