码迷,mamicode.com
首页 > 其他好文 > 详细

LDAP相关操作注意事项

时间:2017-09-17 17:42:11      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:删除   ica   delete   getattr   cat   attribute   null   ace   att   

 lc.Modify(entry.DN, new LdapModification(LdapModification.REPLACE, new LdapAttribute("mDBUseDefaults", "FALSE")));//必须大写

对于布尔类型的属性值,必须要大写,否则报错;

 if (entry.getAttribute("mDBStorageQuota") != null)
                                        lc.Modify(entry.DN, new LdapModification(LdapModification.DELETE, new LdapAttribute("mDBStorageQuota")));

在执行删除操作的时候,必须要先判断有无该属性,否则执行失败;

 lc.Modify(entry.DN, new LdapModification(LdapModification.REPLACE,
                                        new LdapAttribute("mDBStorageQuota","");//ERROR

执行更新操作,需要注意的是,更新的值必须不能为空,否则报错。也就是说,要是清空某一个属性值,只能是执行DELETE删除该属性;

LDAP相关操作注意事项

标签:删除   ica   delete   getattr   cat   attribute   null   ace   att   

原文地址:http://www.cnblogs.com/lishidefengchen/p/7536039.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!