From 9d6f5c9a5b7771e595892e6935cf1cc42012c4c6 Mon Sep 17 00:00:00 2001
From: boli <boli@localhost>
Date: Tue, 22 Dec 2009 21:37:36 +0000
Subject: [PATCH] Fixed some bugs with the connection pool. Moved heart beat back to heart beat connection factory from isValid method.
---
sdk/src/org/opends/sdk/AuthenticatedConnectionFactory.java | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/sdk/src/org/opends/sdk/AuthenticatedConnectionFactory.java b/sdk/src/org/opends/sdk/AuthenticatedConnectionFactory.java
index 329715a..4fd5102 100644
--- a/sdk/src/org/opends/sdk/AuthenticatedConnectionFactory.java
+++ b/sdk/src/org/opends/sdk/AuthenticatedConnectionFactory.java
@@ -253,6 +253,15 @@
/**
* {@inheritDoc}
*/
+ public boolean isValid() {
+ return connection.isValid();
+ }
+
+
+
+ /**
+ * {@inheritDoc}
+ */
public boolean isClosed()
{
return connection.isClosed();
--
Gitblit v1.10.0