Package org.ldaptive
Class ActivePassiveConnectionStrategy
- java.lang.Object
-
- org.ldaptive.AbstractConnectionStrategy
-
- org.ldaptive.ActivePassiveConnectionStrategy
-
- All Implemented Interfaces:
java.lang.Iterable<LdapURL>
,ConnectionStrategy
public class ActivePassiveConnectionStrategy extends AbstractConnectionStrategy
Connection strategy that attempts hosts ordered exactly the way they are configured. This means that the first host will always be attempted first, followed by each host in the list.- Author:
- Middleware Services
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.ldaptive.AbstractConnectionStrategy
AbstractConnectionStrategy.DefaultLdapURLIterator
-
-
Field Summary
-
Fields inherited from class org.ldaptive.AbstractConnectionStrategy
ldapURLSet, logger
-
-
Constructor Summary
Constructors Constructor Description ActivePassiveConnectionStrategy()
Default constructor.ActivePassiveConnectionStrategy(java.util.function.Function<java.util.List<LdapURL>,java.util.Iterator<LdapURL>> function)
Creates a new active passive connection strategy.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Iterator<LdapURL>
iterator()
ActivePassiveConnectionStrategy
newInstance()
Create a deep copy of this strategy.-
Methods inherited from class org.ldaptive.AbstractConnectionStrategy
failure, getActivateCondition, getRetryCondition, initialize, isInitialized, populate, setRetryCondition, success, toString
-
-
-
-
Method Detail
-
iterator
public java.util.Iterator<LdapURL> iterator()
-
newInstance
public ActivePassiveConnectionStrategy newInstance()
Description copied from interface:ConnectionStrategy
Create a deep copy of this strategy.- Returns:
- new instance of this connection strategy
-
-