From 218b40d6e175f5b58b89ff7e0b3050577d3aff2f Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Mon, 10 Nov 2008 13:41:49 +0000
Subject: [PATCH] This change fixes issue 3567:
---
opends/src/server/org/opends/server/protocols/jmx/JmxClientConnection.java | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/opends/src/server/org/opends/server/protocols/jmx/JmxClientConnection.java b/opends/src/server/org/opends/server/protocols/jmx/JmxClientConnection.java
index 5c3387b..62f5abd 100644
--- a/opends/src/server/org/opends/server/protocols/jmx/JmxClientConnection.java
+++ b/opends/src/server/org/opends/server/protocols/jmx/JmxClientConnection.java
@@ -100,7 +100,7 @@
private ConnectionSecurityProvider securityProvider;
// The empty operation list for this connection.
- private LinkedList<AbstractOperation> operationList;
+ private LinkedList<Operation> operationList;
// The connection ID for this client connection.
private long connectionID;
@@ -155,7 +155,7 @@
true,
ERR_LDAP_CONNHANDLER_REJECTED_BY_SERVER.get());
}
- operationList = new LinkedList<AbstractOperation>();
+ operationList = new LinkedList<Operation>();
try
{
@@ -1130,7 +1130,7 @@
*
* @return The set of operations in progress for this client connection.
*/
- public Collection<AbstractOperation> getOperationsInProgress()
+ public Collection<Operation> getOperationsInProgress()
{
return operationList;
}
--
Gitblit v1.10.0