当前位置: 首页>>代码示例>>Java>>正文


Java DirContext.REMOVE_ATTRIBUTE属性代码示例

本文整理汇总了Java中javax.naming.directory.DirContext.REMOVE_ATTRIBUTE属性的典型用法代码示例。如果您正苦于以下问题:Java DirContext.REMOVE_ATTRIBUTE属性的具体用法?Java DirContext.REMOVE_ATTRIBUTE怎么用?Java DirContext.REMOVE_ATTRIBUTE使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在javax.naming.directory.DirContext的用法示例。


在下文中一共展示了DirContext.REMOVE_ATTRIBUTE属性的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: removeMember

/**
 * Remove an "uniqueMember" from given group. Cache is not updated there.
 * 
 * @param uniqueMember
 *            DN of the member to remove.
 * @param group
 *            CN of the group to update. Must be normalized.
 * @return the {@link GroupOrg} where the member has just been removed from.
 */
private GroupOrg removeMember(final ResourceOrg uniqueMember, final String group) {
	final GroupOrg groupLdap = findById(group);
	if (groupLdap.getMembers().contains(uniqueMember.getId()) || groupLdap.getSubGroups().contains(uniqueMember.getId())) {
		// Not useless LDAP operation, avoid LDAP duplicate deletion
		final ModificationItem[] mods = new ModificationItem[1];
		mods[0] = new ModificationItem(DirContext.REMOVE_ATTRIBUTE, new BasicAttribute(UNIQUE_MEMBER, uniqueMember.getDn()));
		try {
			template.modifyAttributes(org.springframework.ldap.support.LdapUtils.newLdapName(groupLdap.getDn()), mods);
		} catch (final org.springframework.ldap.AttributeInUseException aiue) {
			// Even if the membership update failed, the user does not exist anymore. A broken reference can remains
			// in LDAP, but this case is well managed.
			log.info("Unable to remove user {} from the group {} : {}", uniqueMember.getDn(), group, aiue);
		} catch (final org.springframework.ldap.SchemaViolationException sve) { // NOSONAR - Exception is logged
			// Occurs when there is a LDAP schema violation such as as last member removed
			log.warn("Unable to remove user {} from the group {}", uniqueMember.getDn(), group, sve);
			throw new ValidationJsonException("groups", "last-member-of-group", "user", uniqueMember.getId(), "group", group);
		}
	}
	return groupLdap;
}
 
开发者ID:ligoj,项目名称:plugin-id-ldap,代码行数:29,代码来源:GroupLdapRepository.java

示例2: unlock

@Override
public void unlock(final UserOrg user) {
	if (user.getIsolated() == null && user.getLockedBy() != null) {
		// Need to be unlocked
		final ModificationItem[] mods = new ModificationItem[1];
		mods[0] = new ModificationItem(DirContext.REMOVE_ATTRIBUTE, new BasicAttribute(lockedAttribute));
		template.modifyAttributes(org.springframework.ldap.support.LdapUtils.newLdapName(user.getDn()), mods);

		// Also clear the disabled state from cache
		user.setLocked(null);
		user.setLockedBy(null);
	}
}
 
开发者ID:ligoj,项目名称:plugin-id-ldap,代码行数:13,代码来源:UserLdapRepository.java

示例3: updateMemberDn

/**
 * Update the uniqueMember attribute of the user having changed DN. Cache is not updated since.
 * 
 * @param oldUniqueMemberDn
 *            Old DN of the member to update.
 * @param newUniqueMemberDn
 *            New DN of the member to update. UID of the DN should unchanged.
 * @param group
 *            CN of the group to update.
 */
public void updateMemberDn(final String group, final String oldUniqueMemberDn, final String newUniqueMemberDn) {
	final GroupOrg groupLdap = findById(group);
	final ModificationItem[] mods = new ModificationItem[2];
	mods[0] = new ModificationItem(DirContext.REMOVE_ATTRIBUTE, new BasicAttribute(UNIQUE_MEMBER, oldUniqueMemberDn));
	mods[1] = new ModificationItem(DirContext.ADD_ATTRIBUTE, new BasicAttribute(UNIQUE_MEMBER, newUniqueMemberDn));
	template.modifyAttributes(org.springframework.ldap.support.LdapUtils.newLdapName(groupLdap.getDn()), mods);
}
 
开发者ID:ligoj,项目名称:plugin-id-ldap,代码行数:17,代码来源:GroupLdapRepository.java


注:本文中的javax.naming.directory.DirContext.REMOVE_ATTRIBUTE属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。