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/SynchronousConnection.java |   18 +++++++++---------
 1 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/sdk/src/org/opends/sdk/SynchronousConnection.java b/sdk/src/org/opends/sdk/SynchronousConnection.java
index 87caee7..29645f7 100644
--- a/sdk/src/org/opends/sdk/SynchronousConnection.java
+++ b/sdk/src/org/opends/sdk/SynchronousConnection.java
@@ -74,7 +74,7 @@
       InterruptedException, UnsupportedOperationException,
       IllegalStateException, NullPointerException
   {
-    ResultFuture<Result> future = connection.add(request, null);
+    FutureResult<Result> future = connection.add(request, null);
     try
     {
       return future.get();
@@ -102,7 +102,7 @@
       UnsupportedOperationException, IllegalStateException,
       NullPointerException
   {
-    ResultFuture<BindResult> future = connection.bind(request, null);
+    FutureResult<BindResult> future = connection.bind(request, null);
     try
     {
       return future.get();
@@ -136,7 +136,7 @@
       UnsupportedOperationException, IllegalStateException,
       NullPointerException
   {
-    ResultFuture<CompareResult> future = connection.compare(request,
+    FutureResult<CompareResult> future = connection.compare(request,
         null);
     try
     {
@@ -156,7 +156,7 @@
       UnsupportedOperationException, IllegalStateException,
       NullPointerException
   {
-    ResultFuture<Result> future = connection.delete(request, null);
+    FutureResult<Result> future = connection.delete(request, null);
     try
     {
       return future.get();
@@ -175,7 +175,7 @@
       UnsupportedOperationException, IllegalStateException,
       NullPointerException
   {
-    ResultFuture<R> future = connection.extendedRequest(request, null);
+    FutureResult<R> future = connection.extendedRequest(request, null);
     try
     {
       return future.get();
@@ -194,7 +194,7 @@
       UnsupportedOperationException, IllegalStateException,
       NullPointerException
   {
-    ResultFuture<Result> future = connection.modify(request, null);
+    FutureResult<Result> future = connection.modify(request, null);
     try
     {
       return future.get();
@@ -213,7 +213,7 @@
       UnsupportedOperationException, IllegalStateException,
       NullPointerException
   {
-    ResultFuture<Result> future = connection.modifyDN(request, null);
+    FutureResult<Result> future = connection.modifyDN(request, null);
     try
     {
       return future.get();
@@ -243,7 +243,7 @@
       InterruptedException, UnsupportedOperationException,
       IllegalStateException, NullPointerException
   {
-    ResultFuture<Result> future = connection.search(request, null,
+    FutureResult<Result> future = connection.search(request, null,
         handler);
     try
     {
@@ -275,7 +275,7 @@
       throws ErrorResultException, InterruptedException,
       UnsupportedOperationException, IllegalStateException
   {
-    ResultFuture<Schema> future = connection.readSchemaForEntry(name,
+    FutureResult<Schema> future = connection.readSchemaForEntry(name,
         null);
     try
     {

--
Gitblit v1.10.0