mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

matthew_swift
11.23.2010 6bef18d19414f3680165472e37dc4444da765f13
sdk/src/org/opends/sdk/ConnectionFactory.java
@@ -49,11 +49,8 @@
 * connection. Applications should aim to close connections as soon as
 * possible in order to avoid resource contention.
 *
 * @param <C>
 *          The type of asynchronous connection returned by this
 *          connection factory.
 */
public interface ConnectionFactory<C extends AsynchronousConnection>
public interface ConnectionFactory
{
  /**
   * Returns a connection to the Directory Server associated with this
@@ -83,6 +80,6 @@
   * @return A future which can be used to retrieve the asynchronous
   *         connection.
   */
  FutureResult<? extends C> getAsynchronousConnection(
      ResultHandler<? super C> handler);
  FutureResult<AsynchronousConnection> getAsynchronousConnection(
      ResultHandler<AsynchronousConnection> handler);
}