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


Java LdapEntry.getDn方法代码示例

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


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

示例1: executeDeleteOperation

import org.ldaptive.LdapEntry; //导入方法依赖的package包/类
/**
 * Execute delete operation boolean.
 *
 * @param connectionFactory the connection factory
 * @param entry             the entry
 * @return the boolean
 * @throws LdapException the ldap exception
 */
public static boolean executeDeleteOperation(final ConnectionFactory connectionFactory,
                                             final LdapEntry entry) throws LdapException {

    try (Connection connection = createConnection(connectionFactory)) {
        final DeleteOperation delete = new DeleteOperation(connection);
        final DeleteRequest request = new DeleteRequest(entry.getDn());
        request.setReferralHandler(new DeleteReferralHandler());
        final Response<Void> res = delete.execute(request);
        return res.getResultCode() == ResultCode.SUCCESS;
    } catch (final LdapException e) {
        LOGGER.error(e.getMessage(), e);
    }
    return false;
}
 
开发者ID:hsj-xiaokang,项目名称:springboot-shiro-cas-mybatis,代码行数:23,代码来源:LdapUtils.java

示例2: createLdapEntries

import org.ldaptive.LdapEntry; //导入方法依赖的package包/类
/**
 * Creates the given LDAP entries.
 *
 * @param connection Open LDAP connection used to connect to directory.
 * @param entries    Collection of LDAP entries.
 * @throws Exception On LDAP errors.
 */
public static void createLdapEntries(final LDAPConnection connection, final Collection<LdapEntry> entries) throws Exception {
    try {
        for (final LdapEntry entry : entries) {
            final Collection<Attribute> attrs = new ArrayList<>(entry.getAttributeNames().length);
            attrs.addAll(entry.getAttributes().stream()
                    .map(a -> new Attribute(a.getName(), a.getStringValues())).collect(Collectors.toList()));

            final AddRequest ad = new AddRequest(entry.getDn(), attrs);
            connection.add(ad);
        }
    } catch (final Exception e) {
        LOGGER.warn(e.getLocalizedMessage());
    }
}
 
开发者ID:mrluo735,项目名称:cas-5.1.0,代码行数:22,代码来源:LdapTestUtils.java

示例3: executeDeleteOperation

import org.ldaptive.LdapEntry; //导入方法依赖的package包/类
/**
 * Execute delete operation boolean.
 *
 * @param connectionFactory the connection factory
 * @param entry             the entry
 * @return true/false
 * @throws LdapException the ldap exception
 */
public static boolean executeDeleteOperation(final ConnectionFactory connectionFactory, final LdapEntry entry) throws LdapException {
    try (Connection connection = createConnection(connectionFactory)) {
        final DeleteOperation delete = new DeleteOperation(connection);
        final DeleteRequest request = new DeleteRequest(entry.getDn());
        request.setReferralHandler(new DeleteReferralHandler());
        final Response<Void> res = delete.execute(request);
        return res.getResultCode() == ResultCode.SUCCESS;
    } catch (final LdapException e) {
        LOGGER.error(e.getMessage(), e);
    }
    return false;
}
 
开发者ID:mrluo735,项目名称:cas-5.1.0,代码行数:21,代码来源:LdapUtils.java


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