/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- * * The contents of this file are subject to the Netscape Public License * Version 1.0 (the "NPL"); you may not use this file except in * compliance with the NPL. You may obtain a copy of the NPL at * http://www.mozilla.org/NPL/ * * Software distributed under the NPL is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL * for the specific language governing rights and limitations under the * NPL. * * The Initial Developer of this code under the NPL is Netscape * Communications Corporation. Portions created by Netscape are * Copyright (C) 1998 Netscape Communications Corporation. All Rights * Reserved. */ package netscape.ldap; import java.util.*; /** * Represents a set of modifications to be made to attributes in an entry. * A set of modifications is made up of LDAPModification objects. *

* * After you specify a change to an attribute, you can execute the change * by calling the LDAPConnection.modify method and specifying * the DN of the entry that you want to modify. *

* * @version 1.0 * @see netscape.ldap.LDAPModification * @see netscape.ldap.LDAPConnection#modify(java.lang.String, netscape.ldap.LDAPModificationSet) */ public class LDAPModificationSet { private int current = 0; private Vector modifications; /** * Constructs a new, empty set of modifications. * You can add modifications to this set by calling the * LDAPModificationsSet.add method. */ public LDAPModificationSet() { modifications = new Vector(); current = 0; } /** * Retrieves the number of LDAPModification * objects in this set. * @return The number of LDAPModification * objects in this set. */ public int size () { return modifications.size(); } /** * Retrieves a particular LDAPModification object at * the position specified by the index. * @param Index position of the LDAPModification * object that you want to retrieve. * @return LDAPModification object representing * a change to be made to an attribute. */ public LDAPModification elementAt (int index) { return (LDAPModification)modifications.elementAt(index); } /** * Removes a particular LDAPModification object at * the position specified by the index. * @param Index position of the LDAPModification * object that you want to remove. */ public void removeElementAt( int index ) { modifications.removeElementAt(index); } /** * Specifies another modification to be added to the set of modifications. * @param op The type of modification to make, which can be one of the following: *

*

* If you are working with a binary value (not a string value), you need to bitwise OR (|) the * modification type with LDAPModification.BVALUES. *

* * @param attr The attribute (possibly with values) to be modified. */ public synchronized void add( int op, LDAPAttribute attr ) { LDAPModification mod = new LDAPModification( op, attr ); modifications.addElement( mod ); } /** * Removes the first attribute with the specified name in the set of modifications. * @param name Name of the attribute to be removed. */ public synchronized void remove( String name ) { for( int i = 0; i < modifications.size(); i++ ) { LDAPModification mod = (LDAPModification)modifications.elementAt( i ); LDAPAttribute attr = mod.getAttribute(); if ( name.equalsIgnoreCase( attr.getName() ) ) { modifications.removeElementAt( i ); break; } } } }