| | |
| | | /** |
| | | * LDAP connection factory implementation. |
| | | */ |
| | | public final class LDAPConnectionFactory implements |
| | | ConnectionFactory<AsynchronousConnection> |
| | | public final class LDAPConnectionFactory implements ConnectionFactory |
| | | { |
| | | // We implement the factory using the pimpl idiom in order have |
| | | // cleaner Javadoc which does not expose implementation methods from |
| | |
| | | |
| | | |
| | | public FutureResult<AsynchronousConnection> getAsynchronousConnection( |
| | | ResultHandler<? super AsynchronousConnection> handler) |
| | | ResultHandler<AsynchronousConnection> handler) |
| | | { |
| | | return impl.getAsynchronousConnection(handler); |
| | | } |