From 99aaa917a95d7ec19e14dad25f61f58ff84753b1 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 24 Mar 2015 10:49:57 +0000
Subject: [PATCH] Autorefactored javadocs
---
opendj-server-legacy/src/main/java/org/opends/server/protocols/internal/InternalLDAPSocket.java | 30 ++++++++++++++++--------------
1 files changed, 16 insertions(+), 14 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/protocols/internal/InternalLDAPSocket.java b/opendj-server-legacy/src/main/java/org/opends/server/protocols/internal/InternalLDAPSocket.java
index 69295ce..2cde8a6 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/protocols/internal/InternalLDAPSocket.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/protocols/internal/InternalLDAPSocket.java
@@ -66,44 +66,46 @@
public final class InternalLDAPSocket
extends Socket
{
- // Indicates whether this socket is closed.
+ /** Indicates whether this socket is closed. */
private boolean closed;
- // The value that the client has requested for SO_KEEPALIVE.
+ /** The value that the client has requested for SO_KEEPALIVE. */
private boolean keepAlive;
- // The value that the client has requested for OOBINLINE.
+ /** The value that the client has requested for OOBINLINE. */
private boolean oobInline;
- // The value that the client has requested for SO_REUSEADDR.
+ /** The value that the client has requested for SO_REUSEADDR. */
private boolean reuseAddress;
- // The value that the client has requested for TCP_NODELAY.
+ /** The value that the client has requested for TCP_NODELAY. */
private boolean tcpNoDelay;
- // The value that the client has requested for SO_LINGER.
+ /** The value that the client has requested for SO_LINGER. */
private int lingerDuration;
- // The value that the client has requested for SO_RCVBUF.
+ /** The value that the client has requested for SO_RCVBUF. */
private int receiveBufferSize;
- // The value that the client has requested for SO_SNDBUF.
+ /** The value that the client has requested for SO_SNDBUF. */
private int sendBufferSize;
- // The value that the client has requested for SO_TIMEOUT.
+ /** The value that the client has requested for SO_TIMEOUT. */
private int timeout;
- // The value that the client has requested for the traffic class.
+ /** The value that the client has requested for the traffic class. */
private int trafficClass;
- // The internal client connection used to perform the internal
- // operations. It will be null until it is first used.
+ /**
+ * The internal client connection used to perform the internal
+ * operations. It will be null until it is first used.
+ */
private InternalClientConnection conn;
- // The input stream associated with this internal LDAP socket.
+ /** The input stream associated with this internal LDAP socket. */
private InternalLDAPInputStream inputStream;
- // The output stream associated with this internal LDAP socket.
+ /** The output stream associated with this internal LDAP socket. */
private InternalLDAPOutputStream outputStream;
--
Gitblit v1.10.0