Uses of Class
org.ldaptive.LdapURL
- 
Packages that use LdapURL Package Description org.ldaptive org.ldaptive.dns org.ldaptive.referral org.ldaptive.transport org.ldaptive.transport.netty 
- 
- 
Uses of LdapURL in org.ldaptiveFields in org.ldaptive with type parameters of type LdapURL Modifier and Type Field Description private Predicate<LdapURL>AbstractConnectionStrategy. activateConditionCondition used to determine whether to activate a URL.private List<LdapURL>LdapURLActivatorService. inactiveUrlsList of inactive URLs to test.private Function<List<LdapURL>,Iterator<LdapURL>>ActivePassiveConnectionStrategy. iterFunctionCustom iterator function.private Function<List<LdapURL>,Iterator<LdapURL>>ActivePassiveConnectionStrategy. iterFunctionCustom iterator function.private Function<List<LdapURL>,Iterator<LdapURL>>DnsResolverConnectionStrategy. iterFunctionCustom iterator function.private Function<List<LdapURL>,Iterator<LdapURL>>DnsResolverConnectionStrategy. iterFunctionCustom iterator function.private Function<List<LdapURL>,Iterator<LdapURL>>RoundRobinConnectionStrategy. iterFunctionCustom iterator function.private Function<List<LdapURL>,Iterator<LdapURL>>RoundRobinConnectionStrategy. iterFunctionCustom iterator function.private List<LdapURL>AbstractConnectionStrategy.DefaultLdapURLIterator. ldapUrlsURLs to iterate over.private Predicate<LdapURL>AbstractConnectionStrategy. retryConditionCondition used to determine whether to test an inactive URL.private List<LdapURL>LdapURLSet. urlsList of LDAP URLs to connect to in the order provided by the connection strategy.Methods in org.ldaptive that return LdapURL Modifier and Type Method Description static LdapURLLdapURL. copy(LdapURL ldapURL)Returns a new ldap URL initialized with the supplied URL.LdapURLConnection. getLdapURL()Returns the URL that was selected for this connection.LdapURLAbstractConnectionStrategy.DefaultLdapURLIterator. next()Methods in org.ldaptive that return types with arguments of type LdapURL Modifier and Type Method Description Predicate<LdapURL>AbstractConnectionStrategy. getActivateCondition()Predicate<LdapURL>ConnectionStrategy. getActivateCondition()Returns the condition used to activate connections.List<LdapURL>LdapURLSet. getActiveUrls()Returns the active URLs.List<LdapURL>LdapURLActivatorService. getInactiveUrls()Returns the list of inactive urls.List<LdapURL>LdapURLSet. getInactiveUrls()Returns the inactive URLs.Predicate<LdapURL>AbstractConnectionStrategy. getRetryCondition()Predicate<LdapURL>ConnectionStrategy. getRetryCondition()Returns the condition used to determine whether to attempt to activate a connection.List<LdapURL>LdapURLSet. getUrls()Returns the URLs in this set with active URLs ordered before inactive.Iterator<LdapURL>ActivePassiveConnectionStrategy. iterator()Iterator<LdapURL>DnsResolverConnectionStrategy. iterator()Iterator<LdapURL>DnsSrvConnectionStrategy. iterator()Returns a list of URLs retrieved from DNS SRV records.Iterator<LdapURL>RandomConnectionStrategy. iterator()Iterator<LdapURL>RoundRobinConnectionStrategy. iterator()Methods in org.ldaptive with parameters of type LdapURL Modifier and Type Method Description private voidLdapURLActivatorService. activateIfStale(LdapURL url)Inspects the supplied url to determine how long it has been awaiting activation.static LdapURLLdapURL. copy(LdapURL ldapURL)Returns a new ldap URL initialized with the supplied URL.voidAbstractConnectionStrategy. failure(LdapURL url)voidConnectionStrategy. failure(LdapURL url)Indicates the supplied URL could not be connected to.voidLdapURLActivatorService. registerUrl(LdapURL url)Registers an LDAP URL to be tested for activation.voidAbstractConnectionStrategy. success(LdapURL url)voidConnectionStrategy. success(LdapURL url)Indicates the supplied URL was successfully connected to.Method parameters in org.ldaptive with type arguments of type LdapURL Modifier and Type Method Description voidAbstractConnectionStrategy. initialize(String urls, Predicate<LdapURL> condition)voidConnectionStrategy. initialize(String urls, Predicate<LdapURL> activateCondition)Prepare this strategy for use.(package private) voidLdapURLSet. populate(List<LdapURL> ldapUrls)Populates this set with a list of URLs in the order produced byConnectionStrategy.populate(String, LdapURLSet).voidAbstractConnectionStrategy. setRetryCondition(Predicate<LdapURL> condition)Sets the retry condition which determines whether an attempt should be made to activate a URL.Constructor parameters in org.ldaptive with type arguments of type LdapURL Constructor Description ActivePassiveConnectionStrategy(Function<List<LdapURL>,Iterator<LdapURL>> function)Creates a new active passive connection strategy.ActivePassiveConnectionStrategy(Function<List<LdapURL>,Iterator<LdapURL>> function)Creates a new active passive connection strategy.DefaultLdapURLIterator(List<LdapURL> urls)Creates a new default LDAP URL iterator.DnsResolverConnectionStrategy(Function<List<LdapURL>,Iterator<LdapURL>> function)Creates a new DNS connection strategy.DnsResolverConnectionStrategy(Function<List<LdapURL>,Iterator<LdapURL>> function)Creates a new DNS connection strategy.DnsResolverConnectionStrategy(Function<List<LdapURL>,Iterator<LdapURL>> function, Duration ttl)Creates a new DNS resolver connection strategy.DnsResolverConnectionStrategy(Function<List<LdapURL>,Iterator<LdapURL>> function, Duration ttl)Creates a new DNS resolver connection strategy.RoundRobinConnectionStrategy(Function<List<LdapURL>,Iterator<LdapURL>> function)Creates a new round robin connection strategy.RoundRobinConnectionStrategy(Function<List<LdapURL>,Iterator<LdapURL>> function)Creates a new round robin connection strategy.
- 
Uses of LdapURL in org.ldaptive.dnsMethods in org.ldaptive.dns that return LdapURL Modifier and Type Method Description LdapURLSRVRecord. getLdapURL()Returns the target properly formatted as an LDAP URL.
- 
Uses of LdapURL in org.ldaptive.referralMethods in org.ldaptive.referral with parameters of type LdapURL Modifier and Type Method Description protected abstract QAbstractFollowReferralHandler. createReferralRequest(LdapURL url)Creates a new request for this type of referral.protected SearchRequestAbstractFollowSearchReferralHandler. createReferralRequest(LdapURL url)protected AddRequestFollowAddReferralHandler. createReferralRequest(LdapURL url)protected CompareRequestFollowCompareReferralHandler. createReferralRequest(LdapURL url)protected DeleteRequestFollowDeleteReferralHandler. createReferralRequest(LdapURL url)protected ModifyDnRequestFollowModifyDnReferralHandler. createReferralRequest(LdapURL url)protected ModifyRequestFollowModifyReferralHandler. createReferralRequest(LdapURL url)
- 
Uses of LdapURL in org.ldaptive.transportMethods in org.ldaptive.transport with parameters of type LdapURL Modifier and Type Method Description protected abstract voidTransportConnection. open(LdapURL url)Attempt to open a connection to the supplied LDAP URL.protected abstract booleanTransportConnection. test(LdapURL url)Determine whether the supplied URL is acceptable for use.
- 
Uses of LdapURL in org.ldaptive.transport.nettyFields in org.ldaptive.transport.netty declared as LdapURL Modifier and Type Field Description private LdapURLNettyConnection. ldapURLURL derived from the connection strategy.Methods in org.ldaptive.transport.netty that return LdapURL Modifier and Type Method Description LdapURLNettyConnection. getLdapURL()Methods in org.ldaptive.transport.netty with parameters of type LdapURL Modifier and Type Method Description protected voidNettyConnection. open(LdapURL url)private voidNettyConnection. openInitialize(LdapURL url)Initializes this connection for use after it has been established.protected booleanNettyConnection. test(LdapURL url)
 
-