1 iPlanet Directory Server5.1目录服务器简述 iPlanet Directory Server 产品包括治理多个目录的 iPlanet Directory Server 和通过图形界面治理这两个服务器的 iPlanet Console。本章概述有关 iPlanetDirectory Server 的信息以及使用控制台建立目录治理服务所需的最基本的任务。 iPlanet Directory Server 的运行平台包括:widnows 和 linux iPlanet Directory Server 目前最高版本为V5.2
/*实例化一个BasicAttribute基本属性对象 其第一个参数为属性名, 第二个参数为属性值*/ Attribute mod1 = new BasicAttribute("description", "This entry was modified with the Modattrs program on " + (new Date()).toString()); // 定义一个增加的属性条 mods[1] = new ModificationItem(DirContext.ADD_ATTRIBUTE, mod1);
/*实例化一个BasicAttribute基本属性对象 其第一个参数为属性名/
Attribute mod2 = new BasicAttribute("description"); // 定义一个删除的属性条 mods[2] = new ModificationItem(DirContext.REM