From 263d085885df024dca9250cc03c807912b0a7662 Mon Sep 17 00:00:00 2001
From: Matthew Swift <matthew.swift@forgerock.com>
Date: Tue, 24 Apr 2012 22:33:21 +0000
Subject: [PATCH] Reformat to comply with new Checkstyle rules.
---
opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/AbstractAsynchronousConnection.java | 305 +++++++++++++++++++++-----------------------------
1 files changed, 127 insertions(+), 178 deletions(-)
diff --git a/opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/AbstractAsynchronousConnection.java b/opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/AbstractAsynchronousConnection.java
index f223ed7..c9827a2 100644
--- a/opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/AbstractAsynchronousConnection.java
+++ b/opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/AbstractAsynchronousConnection.java
@@ -6,17 +6,16 @@
* (the "License"). You may not use this file except in compliance
* with the License.
*
- * You can obtain a copy of the license at
- * trunk/opendj3/legal-notices/CDDLv1_0.txt
+ * You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
* or http://forgerock.org/license/CDDLv1.0.html.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
- * file and include the License file at
- * trunk/opendj3/legal-notices/CDDLv1_0.txt. If applicable,
- * add the following below this CDDL HEADER, with the fields enclosed
- * by brackets "[]" replaced with your own identifying information:
+ * file and include the License file at legal-notices/CDDLv1_0.txt.
+ * If applicable, add the following below this CDDL HEADER, with the
+ * fields enclosed by brackets "[]" replaced with your own identifying
+ * information:
* Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
@@ -28,200 +27,150 @@
package org.forgerock.opendj.ldap;
-
-
-import org.forgerock.opendj.ldap.requests.*;
+import org.forgerock.opendj.ldap.requests.AddRequest;
+import org.forgerock.opendj.ldap.requests.BindRequest;
+import org.forgerock.opendj.ldap.requests.CompareRequest;
+import org.forgerock.opendj.ldap.requests.DeleteRequest;
+import org.forgerock.opendj.ldap.requests.ExtendedRequest;
+import org.forgerock.opendj.ldap.requests.ModifyDNRequest;
+import org.forgerock.opendj.ldap.requests.ModifyRequest;
+import org.forgerock.opendj.ldap.requests.SearchRequest;
import org.forgerock.opendj.ldap.responses.BindResult;
import org.forgerock.opendj.ldap.responses.CompareResult;
import org.forgerock.opendj.ldap.responses.ExtendedResult;
import org.forgerock.opendj.ldap.responses.Result;
-
-
/**
* An abstract connection whose synchronous methods are implemented in terms of
* asynchronous methods.
*/
-public abstract class AbstractAsynchronousConnection extends AbstractConnection
-{
+public abstract class AbstractAsynchronousConnection extends AbstractConnection {
- /**
- * Creates a new abstract asynchronous connection.
- */
- protected AbstractAsynchronousConnection()
- {
- // No implementation required.
- }
-
-
-
- /**
- * {@inheritDoc}
- */
- @Override
- public Result add(final AddRequest request) throws ErrorResultException,
- InterruptedException
- {
- final FutureResult<Result> future = addAsync(request, null, null);
- try
- {
- return future.get();
+ /**
+ * Creates a new abstract asynchronous connection.
+ */
+ protected AbstractAsynchronousConnection() {
+ // No implementation required.
}
- finally
- {
- // Cancel the request if it hasn't completed.
- future.cancel(false);
+
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ public Result add(final AddRequest request) throws ErrorResultException, InterruptedException {
+ final FutureResult<Result> future = addAsync(request, null, null);
+ try {
+ return future.get();
+ } finally {
+ // Cancel the request if it hasn't completed.
+ future.cancel(false);
+ }
}
- }
-
-
- /**
- * {@inheritDoc}
- */
- @Override
- public BindResult bind(final BindRequest request)
- throws ErrorResultException, InterruptedException
- {
- final FutureResult<BindResult> future = bindAsync(request, null, null);
- try
- {
- return future.get();
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ public BindResult bind(final BindRequest request) throws ErrorResultException,
+ InterruptedException {
+ final FutureResult<BindResult> future = bindAsync(request, null, null);
+ try {
+ return future.get();
+ } finally {
+ // Cancel the request if it hasn't completed.
+ future.cancel(false);
+ }
}
- finally
- {
- // Cancel the request if it hasn't completed.
- future.cancel(false);
+
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ public CompareResult compare(final CompareRequest request) throws ErrorResultException,
+ InterruptedException {
+ final FutureResult<CompareResult> future = compareAsync(request, null, null);
+ try {
+ return future.get();
+ } finally {
+ // Cancel the request if it hasn't completed.
+ future.cancel(false);
+ }
}
- }
-
-
- /**
- * {@inheritDoc}
- */
- @Override
- public CompareResult compare(final CompareRequest request)
- throws ErrorResultException, InterruptedException
- {
- final FutureResult<CompareResult> future = compareAsync(request, null, null);
- try
- {
- return future.get();
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ public Result delete(final DeleteRequest request) throws ErrorResultException,
+ InterruptedException {
+ final FutureResult<Result> future = deleteAsync(request, null, null);
+ try {
+ return future.get();
+ } finally {
+ // Cancel the request if it hasn't completed.
+ future.cancel(false);
+ }
}
- finally
- {
- // Cancel the request if it hasn't completed.
- future.cancel(false);
+
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ public <R extends ExtendedResult> R extendedRequest(final ExtendedRequest<R> request,
+ final IntermediateResponseHandler handler) throws ErrorResultException,
+ InterruptedException {
+ final FutureResult<R> future = extendedRequestAsync(request, handler, null);
+ try {
+ return future.get();
+ } finally {
+ // Cancel the request if it hasn't completed.
+ future.cancel(false);
+ }
}
- }
-
-
- /**
- * {@inheritDoc}
- */
- @Override
- public Result delete(final DeleteRequest request)
- throws ErrorResultException, InterruptedException
- {
- final FutureResult<Result> future = deleteAsync(request, null, null);
- try
- {
- return future.get();
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ public Result modify(final ModifyRequest request) throws ErrorResultException,
+ InterruptedException {
+ final FutureResult<Result> future = modifyAsync(request, null, null);
+ try {
+ return future.get();
+ } finally {
+ // Cancel the request if it hasn't completed.
+ future.cancel(false);
+ }
}
- finally
- {
- // Cancel the request if it hasn't completed.
- future.cancel(false);
+
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ public Result modifyDN(final ModifyDNRequest request) throws ErrorResultException,
+ InterruptedException {
+ final FutureResult<Result> future = modifyDNAsync(request, null, null);
+ try {
+ return future.get();
+ } finally {
+ // Cancel the request if it hasn't completed.
+ future.cancel(false);
+ }
}
- }
-
-
- /**
- * {@inheritDoc}
- */
- @Override
- public <R extends ExtendedResult> R extendedRequest(
- final ExtendedRequest<R> request,
- final IntermediateResponseHandler handler) throws ErrorResultException,
- InterruptedException
- {
- final FutureResult<R> future = extendedRequestAsync(request, handler, null);
- try
- {
- return future.get();
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ public Result search(final SearchRequest request, final SearchResultHandler handler)
+ throws ErrorResultException, InterruptedException {
+ final FutureResult<Result> future = searchAsync(request, null, handler);
+ try {
+ return future.get();
+ } finally {
+ // Cancel the request if it hasn't completed.
+ future.cancel(false);
+ }
}
- finally
- {
- // Cancel the request if it hasn't completed.
- future.cancel(false);
- }
- }
-
-
-
- /**
- * {@inheritDoc}
- */
- @Override
- public Result modify(final ModifyRequest request)
- throws ErrorResultException, InterruptedException
- {
- final FutureResult<Result> future = modifyAsync(request, null, null);
- try
- {
- return future.get();
- }
- finally
- {
- // Cancel the request if it hasn't completed.
- future.cancel(false);
- }
- }
-
-
-
- /**
- * {@inheritDoc}
- */
- @Override
- public Result modifyDN(final ModifyDNRequest request)
- throws ErrorResultException, InterruptedException
- {
- final FutureResult<Result> future = modifyDNAsync(request, null, null);
- try
- {
- return future.get();
- }
- finally
- {
- // Cancel the request if it hasn't completed.
- future.cancel(false);
- }
- }
-
-
-
- /**
- * {@inheritDoc}
- */
- @Override
- public Result search(final SearchRequest request,
- final SearchResultHandler handler) throws ErrorResultException,
- InterruptedException
- {
- final FutureResult<Result> future = searchAsync(request, null, handler);
- try
- {
- return future.get();
- }
- finally
- {
- // Cancel the request if it hasn't completed.
- future.cancel(false);
- }
- }
}
--
Gitblit v1.10.0