本文整理汇总了Java中org.ldaptive.auth.FormatDnResolver类的典型用法代码示例。如果您正苦于以下问题:Java FormatDnResolver类的具体用法?Java FormatDnResolver怎么用?Java FormatDnResolver使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
FormatDnResolver类属于org.ldaptive.auth包,在下文中一共展示了FormatDnResolver类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getDirectBindAuthenticator
import org.ldaptive.auth.FormatDnResolver; //导入依赖的package包/类
private static Authenticator getDirectBindAuthenticator(final AbstractLdapAuthenticationProperties l) {
if (StringUtils.isBlank(l.getDnFormat())) {
throw new IllegalArgumentException("Dn format cannot be empty/blank for direct bind authentication");
}
final FormatDnResolver resolver = new FormatDnResolver(l.getDnFormat());
final Authenticator authenticator = new Authenticator(resolver, getPooledBindAuthenticationHandler(l, Beans.newLdaptivePooledConnectionFactory(l)));
if (l.isEnhanceWithEntryResolver()) {
authenticator.setEntryResolver(Beans.newLdaptiveSearchEntryResolver(l, Beans.newLdaptivePooledConnectionFactory(l)));
}
return authenticator;
}
示例2: getActiveDirectoryAuthenticator
import org.ldaptive.auth.FormatDnResolver; //导入依赖的package包/类
private static Authenticator getActiveDirectoryAuthenticator(final AbstractLdapAuthenticationProperties l) {
if (StringUtils.isBlank(l.getDnFormat())) {
throw new IllegalArgumentException("Dn format cannot be empty/blank for active directory authentication");
}
final FormatDnResolver resolver = new FormatDnResolver(l.getDnFormat());
final Authenticator authn = new Authenticator(resolver, getPooledBindAuthenticationHandler(l, Beans.newLdaptivePooledConnectionFactory(l)));
if (l.isEnhanceWithEntryResolver()) {
authn.setEntryResolver(Beans.newLdaptiveSearchEntryResolver(l, Beans.newLdaptivePooledConnectionFactory(l)));
}
return authn;
}
示例3: getActiveDirectoryAuthenticator
import org.ldaptive.auth.FormatDnResolver; //导入依赖的package包/类
private Authenticator getActiveDirectoryAuthenticator(
PooledConnectionFactory connFactory, EntryResolver entryResolver) {
checkRequiredProperty(DN_FORMAT_PROPERTY_NAME, dnFormat);
final FormatDnResolver resolver = new FormatDnResolver(dnFormat);
final Authenticator authn =
new Authenticator(resolver, getPooledBindAuthenticationHandler(connFactory));
authn.setEntryResolver(entryResolver);
return authn;
}
示例4: create
import org.ldaptive.auth.FormatDnResolver; //导入依赖的package包/类
public static Authenticator create() {
final FormatDnResolver dnResolver = new FormatDnResolver();
dnResolver.setFormat(LdapServer.CN + "=%s," + LdapServer.BASE_PEOPLE_DN);
final ConnectionConfig connectionConfig = new ConnectionConfig();
connectionConfig.setConnectTimeout(500);
connectionConfig.setResponseTimeout(1000);
connectionConfig.setLdapUrl("ldap://localhost:" + LdapServer.PORT);
final DefaultConnectionFactory connectionFactory = new DefaultConnectionFactory();
connectionFactory.setConnectionConfig(connectionConfig);
final PoolConfig poolConfig = new PoolConfig();
poolConfig.setMinPoolSize(1);
poolConfig.setMaxPoolSize(2);
poolConfig.setValidateOnCheckOut(true);
poolConfig.setValidateOnCheckIn(true);
poolConfig.setValidatePeriodically(false);
final SearchValidator searchValidator = new SearchValidator();
final IdlePruneStrategy pruneStrategy = new IdlePruneStrategy();
final BlockingConnectionPool connectionPool = new BlockingConnectionPool();
connectionPool.setPoolConfig(poolConfig);
connectionPool.setBlockWaitTime(1000);
connectionPool.setValidator(searchValidator);
connectionPool.setPruneStrategy(pruneStrategy);
connectionPool.setConnectionFactory(connectionFactory);
connectionPool.initialize();
final PooledConnectionFactory pooledConnectionFactory = new PooledConnectionFactory();
pooledConnectionFactory.setConnectionPool(connectionPool);
final PooledBindAuthenticationHandler handler = new PooledBindAuthenticationHandler();
handler.setConnectionFactory(pooledConnectionFactory);
final Authenticator authenticator = new Authenticator();
authenticator.setDnResolver(dnResolver);
authenticator.setAuthenticationHandler(handler);
return authenticator;
}
示例5: getDirectBindAuthenticator
import org.ldaptive.auth.FormatDnResolver; //导入依赖的package包/类
private Authenticator getDirectBindAuthenticator(PooledConnectionFactory connFactory) {
checkRequiredProperty(DN_FORMAT_PROPERTY_NAME, dnFormat);
final FormatDnResolver resolver = new FormatDnResolver(dnFormat);
return new Authenticator(resolver, getPooledBindAuthenticationHandler(connFactory));
}