From 388f25a9dc58704ea19a333ba9a28054d48590b1 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:
---
sdk/src/org/opends/sdk/ConnectionFactory.java | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/sdk/src/org/opends/sdk/ConnectionFactory.java b/sdk/src/org/opends/sdk/ConnectionFactory.java
index ed345b9..a9c55cb 100644
--- a/sdk/src/org/opends/sdk/ConnectionFactory.java
+++ b/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