Modify the attributes of the entry : Initial Context « JNDI LDAP « Java






Modify the attributes of the entry

  

import java.util.Hashtable;

import javax.naming.Context;
import javax.naming.directory.Attribute;
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 String INITCTX = "com.sun.jndi.ldap.LdapCtxFactory";

  public static String MY_HOST = "ldap://localhost:1389";

  public static String MGR_DN = "uid=yourid, ou=People, o=Java.com";

  public static String MGR_PW = "password";

  public static String MY_SEARCHBASE = "o=Java.com";

  public static void main(String args[]) throws Exception {
    Hashtable<String, String> env = new Hashtable<String, String>();

    env.put(Context.INITIAL_CONTEXT_FACTORY, INITCTX);

    env.put(Context.PROVIDER_URL, MY_HOST);
    env.put(Context.SECURITY_AUTHENTICATION, "simple");
    env.put(Context.SECURITY_PRINCIPAL, MGR_DN);
    env.put(Context.SECURITY_CREDENTIALS, MGR_PW);

    DirContext ctx = new InitialDirContext(env);

    ModificationItem[] mods = new ModificationItem[2];

    Attribute mod0 = new BasicAttribute("number", "555-555-5555");
    Attribute mod1 = new BasicAttribute("1", "AAA");

    mods[0] = new ModificationItem(DirContext.REPLACE_ATTRIBUTE, mod0);
    mods[1] = new ModificationItem(DirContext.ADD_ATTRIBUTE, mod1);

    ctx.modifyAttributes("uid=mewilcox, ou=People, o=airius.com", mods);
  }
}

   
    
  








Related examples in the same category

1.how to create an initial context to an LDAP server using DIGEST-MD5 authentication
2.how to create an initial context to an LDAP server using DIGEST-MD5 authentication with a specified realm
3.how to create an initial context to an LDAP server using External authentication and SSL
4.how to create an initial context to an LDAP server using an LDAPS URL
5.how to create an initial context to an LDAP server using anonymous authentication (i.e. none)
6.how to create an initial context to an LDAP server using simple authentication
7.how to create an initial context to an LDAP server using SSL
8.how to create an initial context to an LDAP server using a custom socket factory
9.Creating an Initial Context to the Naming Service
10.Looking Up an Object from the Naming Service
11.Adding, Replacing, Removing, and Renaming a Binding in the Naming Service
12.DNS lookups for XMPP services