Modifying an Object's Attributes in the Directory : Directory « JNDI LDAP « Java






Modifying an Object's Attributes in the Directory

 

import java.util.Hashtable;

import javax.naming.Context;
import javax.naming.directory.BasicAttribute;
import javax.naming.directory.DirContext;
import javax.naming.directory.InitialDirContext;
import javax.naming.directory.ModificationItem;

public class Main {
  public static void main(String[] argv) throws Exception {
    ModificationItem[] mods = new ModificationItem[3];

    mods[0] = new ModificationItem(DirContext.REPLACE_ATTRIBUTE, new BasicAttribute("mail","g@w.com"));

    mods[1] = new ModificationItem(DirContext.ADD_ATTRIBUTE, new BasicAttribute("number","5555"));

    mods[2] = new ModificationItem(DirContext.REMOVE_ATTRIBUTE, new BasicAttribute("jpeg"));
    String url = "ldap://localhost/o=JNDITutorial";
    Hashtable<String, String> env = new Hashtable<String, String>();
    env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
    env.put(Context.PROVIDER_URL, url);

    DirContext ctx = new InitialDirContext(env);
    ctx.modifyAttributes("cn=Name, ou=People", mods);
  }
}

   
  








Related examples in the same category

1.Creating an Initial Context to a Directory
2.Reading an Object's Attributes from the Directory
3.Creating a Directory Entry
4.Adding a Binding with Attributes to the Directory
5.Performing a Basic Directory Search
6.Searching the Directory by Using a Search Filter
7.Searching a Subtree in the Directory
8.Cancelling a Directory Search
9.Getting an Object's Schema from the Directory
10.Getting an Attribute's Schema from the Directory
11.Authenticating to the Directory
12.Registering for Namespace Changes in the Directory
13.Registering for Object Changes in the Directory