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/AbstractConnectionFactory.java |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/opendj-sdk/sdk/src/org/opends/sdk/AbstractConnectionFactory.java b/opendj-sdk/sdk/src/org/opends/sdk/AbstractConnectionFactory.java
index ea77f1a..a5de76f 100644
--- a/opendj-sdk/sdk/src/org/opends/sdk/AbstractConnectionFactory.java
+++ b/opendj-sdk/sdk/src/org/opends/sdk/AbstractConnectionFactory.java
@@ -59,8 +59,8 @@
   /**
    * {@inheritDoc}
    */
-  public abstract ConnectionFuture<? extends C> getAsynchronousConnection(
-      ConnectionResultHandler<? super C> handler);
+  public abstract FutureResult<? extends C> getAsynchronousConnection(
+      ResultHandler<? super C> handler);
 
 
 
@@ -104,7 +104,7 @@
   protected final C blockingGetAsynchronousConnection()
       throws ErrorResultException
   {
-    ConnectionFuture<? extends C> future = getAsynchronousConnection(null);
+    FutureResult<? extends C> future = getAsynchronousConnection(null);
     try
     {
       return future.get();

--
Gitblit v1.10.0