| | |
| | | import com.sun.opends.sdk.ldap.LDAPConnectionFactoryImpl; |
| | | |
| | | |
| | | |
| | | /** |
| | | * LDAP connection factory implementation. |
| | | */ |
| | |
| | | |
| | | |
| | | |
| | | public <P> ConnectionFuture<AsynchronousConnection> getAsynchronousConnection( |
| | | ConnectionResultHandler<? super AsynchronousConnection, P> handler, |
| | | P p) |
| | | public ConnectionFuture<AsynchronousConnection> getAsynchronousConnection( |
| | | ConnectionResultHandler<? super AsynchronousConnection> handler) |
| | | { |
| | | return impl.getAsynchronousConnection(handler, p); |
| | | return impl.getAsynchronousConnection(handler); |
| | | } |
| | | |
| | | |