From a9dd51631135b201b46f32c862ea72006d7a3a65 Mon Sep 17 00:00:00 2001
From: jarnou <jarnou@localhost>
Date: Tue, 17 Jul 2007 09:16:06 +0000
Subject: [PATCH] This fix is the refactoring of the unbind operation (issue 1990).
---
opendj-sdk/opends/src/server/org/opends/server/protocols/jmx/JmxClientConnection.java | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/protocols/jmx/JmxClientConnection.java b/opendj-sdk/opends/src/server/org/opends/server/protocols/jmx/JmxClientConnection.java
index a0647f2..23eaf49 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/protocols/jmx/JmxClientConnection.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/protocols/jmx/JmxClientConnection.java
@@ -1039,8 +1039,10 @@
// unbind the underlying connection
try
{
- UnbindOperation unbindOp = new UnbindOperation((ClientConnection) this,
- this.nextOperationID(), this.nextMessageID(), null);
+ UnbindOperationBasis unbindOp = new UnbindOperationBasis(
+ (ClientConnection) this,
+ this.nextOperationID(),
+ this.nextMessageID(), null);
unbindOp.run();
}
--
Gitblit v1.10.0