From 47e492a9ccde3af37512cdde9cd13d3c388f4ebe Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Tue, 15 Dec 2009 21:58:47 +0000
Subject: [PATCH] Various changes:

---
 opendj-sdk/sdk/src/org/opends/sdk/ConnectionFactory.java |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/opendj-sdk/sdk/src/org/opends/sdk/ConnectionFactory.java b/opendj-sdk/sdk/src/org/opends/sdk/ConnectionFactory.java
index ed345b9..a9c55cb 100644
--- a/opendj-sdk/sdk/src/org/opends/sdk/ConnectionFactory.java
+++ b/opendj-sdk/sdk/src/org/opends/sdk/ConnectionFactory.java
@@ -72,9 +72,9 @@
   /**
    * Initiates an asynchronous connection request to the Directory
    * Server associated with this connection factory. The returned
-   * {@code ConnectionFuture} can be used to retrieve the completed
+   * {@code FutureResult} can be used to retrieve the completed
    * asynchronous connection. Alternatively, if a {@code
-   * ConnectionResultHandler} is provided, the handler will be notified
+   * ResultHandler} is provided, the handler will be notified
    * when the connection is available and ready for use.
    *
    * @param handler
@@ -83,6 +83,6 @@
    * @return A future which can be used to retrieve the asynchronous
    *         connection.
    */
-  ConnectionFuture<? extends C> getAsynchronousConnection(
-      ConnectionResultHandler<? super C> handler);
+  FutureResult<? extends C> getAsynchronousConnection(
+      ResultHandler<? super C> handler);
 }

--
Gitblit v1.10.0