From 7ed6e86a9895f116d1d57712f327235fc03c15e0 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
---
opends/src/server/org/opends/server/protocols/http/HTTPClientConnection.java | 9 +++------
1 files changed, 3 insertions(+), 6 deletions(-)
diff --git a/opends/src/server/org/opends/server/protocols/http/HTTPClientConnection.java b/opends/src/server/org/opends/server/protocols/http/HTTPClientConnection.java
index 8d82c76..7c22190 100644
--- a/opends/src/server/org/opends/server/protocols/http/HTTPClientConnection.java
+++ b/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