From c96af91cdd11f79c11e56d6c7fe33d0edc653ea3 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Mon, 15 Apr 2013 12:08:55 +0000
Subject: [PATCH] OPENDJ-832 (CR-1545) Leverage the work queue for processing requests received on the HTTP connection handler
---
opends/src/server/org/opends/server/core/OperationWrapper.java | 20 +++++++++++++++++++-
1 files changed, 19 insertions(+), 1 deletions(-)
diff --git a/opends/src/server/org/opends/server/core/OperationWrapper.java b/opends/src/server/org/opends/server/core/OperationWrapper.java
index 355fd6a..429679d 100644
--- a/opends/src/server/org/opends/server/core/OperationWrapper.java
+++ b/opends/src/server/org/opends/server/core/OperationWrapper.java
@@ -33,8 +33,8 @@
import org.opends.messages.Message;
import org.opends.messages.MessageBuilder;
import org.opends.server.api.ClientConnection;
-import org.opends.server.types.*;
import org.opends.server.controls.ControlDecoder;
+import org.opends.server.types.*;
/**
@@ -355,6 +355,15 @@
* {@inheritDoc}
*/
@Override
+ public boolean isInnerOperation()
+ {
+ return operation.isInnerOperation();
+ }
+
+ /**
+ * {@inheritDoc}
+ */
+ @Override
public boolean isInternalOperation()
{
return operation.isInternalOperation();
@@ -454,6 +463,15 @@
* {@inheritDoc}
*/
@Override
+ public void setInnerOperation(boolean isInnerOperation)
+ {
+ operation.setInnerOperation(isInnerOperation);
+ }
+
+ /**
+ * {@inheritDoc}
+ */
+ @Override
public void setInternalOperation(boolean isInternalOperation)
{
operation.setInternalOperation(isInternalOperation);
--
Gitblit v1.10.0