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/controls/VLVResponseControl.java | 16 ++++++----------
1 files changed, 6 insertions(+), 10 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/controls/VLVResponseControl.java b/opendj-server-legacy/src/main/java/org/opends/server/controls/VLVResponseControl.java
index 75fa727..90b29b6 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/controls/VLVResponseControl.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/controls/VLVResponseControl.java
@@ -74,9 +74,7 @@
private static final class Decoder
implements ControlDecoder<VLVResponseControl>
{
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public VLVResponseControl decode(boolean isCritical, ByteString value)
throws DirectoryException
{
@@ -112,9 +110,7 @@
}
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public String getOID()
{
return OID_VLV_RESPONSE_CONTROL;
@@ -127,16 +123,16 @@
public static final ControlDecoder<VLVResponseControl> DECODER =
new Decoder();
- // The context ID for this VLV response control.
+ /** The context ID for this VLV response control. */
private ByteString contextID;
- // The content count estimating the total number of entries in the result set.
+ /** The content count estimating the total number of entries in the result set. */
private int contentCount;
- // The offset of the target entry in the result set.
+ /** The offset of the target entry in the result set. */
private int targetPosition;
- // The result code for the VLV operation.
+ /** The result code for the VLV operation. */
private int vlvResultCode;
--
Gitblit v1.10.0