本文整理匯總了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));
}