马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。如果您注册时有任何问题请联系客服QQ: 83569622 。
您需要 登录 才可以下载或查看,没有帐号?注册
x
好了,现在介绍一些简单的操作。
l
修改属性 修改属性包括增加,修改,删除属性。 修改一个对象的属性的方法之一就是提供一个修改请求列表(ModificationItem)。每个ModificationItem由一定数量的指定修改类型的常量(ADD_ATTRIBUTE,REPLACE_ATTRIBUTE,REMOVE_ATTRIBUTE)以及修改的属性Attribute组成。
下面是我写的简单的操作代码:
/**
* updates the specified extension information,including add,replace,remove attribute
* @param search_base The search distinguishedName.
* @param mod_op The modificational operation,can use ADD_ATTRIBUTE,REPLACE_ATTRIBUTE,REMOVE_ATTRIBUTE.
* @param ctx The ldapcontext.
*/
public static void updateAttribute(String search_base,int mod_op,LdapContext ctx){
try {
Attributes attrs = null;
Attribute attr = null;
//define ModificationItem
ModificationItem[] mods =new ModificationItem[1];
//operate the ModificationItem
switch(mod_op){
//operation add_attribute
case LdapContext.ADD_ATTRIBUTE:{
//instance an attribute to be added
attr = new BasicAttribute("description");
//value of attribute description to add
attr.add("I add an attribute.");
//instance ModificationItem
mods[0] = new ModificationItem(LdapContext.ADD_ATTRIBUTE,attr);
//add description attribute
ctx.modifyAttributes(search_base,mods);
attrs = ctx.getAttributes(search_base,new String[]{"description"});
//print the value of new attribute
System.out.println("****new attribute****");
System.out.println("attribute: description ");
System.out.println("value:"+attrs.get("description"));
break;
}
//operation replace_attribute
case LdapContext.REPLACE_ATTRIBUTE:{
//print the value of original attribute
attrs = ctx.getAttributes(search_base,new String[]{"description"});
System.out.println("****original attribute****");
System.out.println("attribute:description");
System.out.println("value:"+attrs.get("description"));
//instance an attribute to be replaced
attr = new BasicAttribute("description");
//add value of attribute description to replace
attr.add("I replace an attribute.");
//instance ModificationItem
mods[0] = new ModificationItem(LdapContext.REPLACE_ATTRIBUTE,attr);
//replace description attribute
ctx.modifyAttributes(search_base,mods);
attrs = ctx.getAttributes(search_base,new String[]{"description"});
//print the value of replaced attribute
System.out.println("****replaced attribute****");
System.out.println("attribute:description");
System.out.println("value:"+attrs.get("description"));
break;
}
//operation remove_attribute
case LdapContext.REMOVE_ATTRIBUTE:{
//print the value of original attribute
attrs = ctx.getAttributes(search_base,new String[]{"description"});
System.out.println("****original attribute****");
System.out.println("attribute:description");
System.out.println("value:"+attrs.get("description"));
//instance an attribute to be removed
attr = new BasicAttribute("description");
//instance ModificationItem
mods[0] = new ModificationItem(LdapContext.REMOVE_ATTRIBUTE,attr);
//remove description attribute
ctx.modifyAttributes(search_base,mods);
attrs = ctx.getAttributes(search_base,new String[]{"description"});
//print the value of removed attribute
System.out.println("****removed attribute****");
System.out.println("attribute:description");
System.out.println("value:"+attrs.get("description"));
break;
}
}
} catch (Exception e){
System.out.println(e.toString());
}
}
这个例子里面有注释,而且很好懂,我就不一一详解了。 要注意的是,ModificationItem[]数组可以指定一系列的操作,修改的顺序和它们出现在数组中的顺序一致,要么所有的修改都完成,要么一个都不完成,即一个修改操作是一个事务。
遨豪一直专注于Liferay门户本地化服务,致力于为中国用户提供最佳的Liferay门户解决方案,其主要服务包括:
1. Liferay门户二次开发服务(基于客户需求)
2. Liferay门户技术支持服务 (现场+远程)
3. Liferay门户定制培训服务 (现场+远程)
4. Liferay门户企业版服务 (提供liferay企业版+专业技术支持)
------------------------------------------------------------
遨豪(大连)科技有限公司
Liferay 中国合作伙伴
-------------------------------------
市场部: Mr.Luo
-------------------------------------
电话:411-8405-2127
传真:411-8489-8263
MSN: liferayjw@hotmail.com
QQ: 1209462980
email:jiajia6f@163.com
------------------------------------
地址:大连高新技术产业园区
-------------------------------------
网址: www.aukcell.com
-------------------------------------
|