/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- * * ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * The Original Code is mozilla.org code. * * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1999 * the Initial Developer. All Rights Reserved. * * Contributor(s): * * Alternatively, the contents of this file may be used under the terms of * either the GNU General Public License Version 2 or later (the "GPL"), or * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), * in which case the provisions of the GPL or the LGPL are applicable instead * of those above. If you wish to allow use of your version of this file only * under the terms of either the GPL or the LGPL, and not to allow others to * use your version of this file under the terms of the MPL, indicate your * decision by deleting the provisions above and replace them with the notice * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ 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 implements java.io.Serializable { static final long serialVersionUID = 4650238666753391214L; 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 make 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. This 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 modify */ 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 remove */ 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; } } } /** * Retrieves the string representation of the * modification set. * * @return string representation of the modification set. */ public String toString() { String s = "LDAPModificationSet: {"; for( int i = 0; i < modifications.size(); i++ ) { s += (LDAPModification)modifications.elementAt(i); if ( i < modifications.size()-1 ) { s += ", "; } } s += "}"; return s; } }