From 67405dde9ba213331dab1fc46cb18c485070fd5b Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Fri, 05 Jun 2009 09:04:50 +0000
Subject: [PATCH] svn merge -r5333:5417 https://opends.dev.java.net/svn/opends/branches/b2.0
---
opends/src/server/org/opends/server/api/ClientConnection.java | 38 --------------------------------------
1 files changed, 0 insertions(+), 38 deletions(-)
diff --git a/opends/src/server/org/opends/server/api/ClientConnection.java b/opends/src/server/org/opends/server/api/ClientConnection.java
index 1e43e23..70dab74 100644
--- a/opends/src/server/org/opends/server/api/ClientConnection.java
+++ b/opends/src/server/org/opends/server/api/ClientConnection.java
@@ -29,7 +29,6 @@
import java.net.InetAddress;
-import java.nio.ByteBuffer;
import java.nio.channels.Selector;
import java.nio.channels.SocketChannel;
import java.util.Collection;
@@ -552,27 +551,6 @@
mustEvaluateNetworkGroup = bool;
}
- /**
- * Indicates that the data in the provided buffer has been read from
- * the client and should be processed. The contents of the provided
- * buffer will be in clear-text (the data may have been passed
- * through a connection security provider to obtain the clear-text
- * version), and may contain part or all of one or more client
- * requests.
- *
- * @param buffer The byte buffer containing the data available for
- * reading.
- *
- * @return {@code true} if all the data in the provided buffer was
- * processed and the client connection can remain
- * established, or {@code false} if a decoding error
- * occurred and requests from this client should no longer
- * be processed. Note that if this method does return
- * {@code false}, then it must have already disconnected
- * the client.
- */
- public abstract boolean processDataRead(ByteBuffer buffer);
-
/**
@@ -1747,22 +1725,6 @@
public abstract void toString(StringBuilder buffer);
-
- /**
- * Performs any work that may be needed before the JVM invokes
- * garbage collection for this object. In this case, it makes sure
- * to deregister with the Directory Server as a change notification
- * listener. If a subclass wishes to perform custom finalization
- * processing, then it should override this method and make sure to
- * invoke {@code super.finalize} as its first call.
- */
- @Override
- protected void finalize()
- {
- finalizeConnectionInternal();
- }
-
-
/**
* Returns the network group to which the connection belongs.
*
--
Gitblit v1.10.0