From 9059d07c4922bc2ce6c339f0e47076288b7b6ecb Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Mon, 22 Apr 2013 11:30:04 +0000
Subject: [PATCH] OPENDJ-832 Leverage the work queue for processing requests received on the HTTP connection handler

---
 opendj-sdk/opends/src/server/org/opends/server/protocols/http/HTTPClientConnection.java |    9 +++------
 1 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/opendj-sdk/opends/src/server/org/opends/server/protocols/http/HTTPClientConnection.java b/opendj-sdk/opends/src/server/org/opends/server/protocols/http/HTTPClientConnection.java
index 8d82c76..7c22190 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/protocols/http/HTTPClientConnection.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/protocols/http/HTTPClientConnection.java
@@ -582,12 +582,9 @@
     return 0;
   }
 
-  /**
-   * Returns whether the client connection is valid.
-   *
-   * @return true if the connection is valid, false otherwise
-   */
-  boolean isConnectionValid()
+  /** {@inheritDoc} */
+  @Override
+  public boolean isConnectionValid()
   {
     return connectionValid;
   }

--
Gitblit v1.10.0