From 61b9eb1be03fc03a9f4bb0013a08ff44a1059503 Mon Sep 17 00:00:00 2001
From: Jean-Noël Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Wed, 20 Apr 2016 14:25:46 +0000
Subject: [PATCH] opendj-server-legacy: added @Override + Autorefactor'ed comments
---
opendj-server-legacy/src/main/java/org/opends/server/controls/AccountUsableRequestControl.java | 51 ++++++++++++++-------------------------------------
1 files changed, 14 insertions(+), 37 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/controls/AccountUsableRequestControl.java b/opendj-server-legacy/src/main/java/org/opends/server/controls/AccountUsableRequestControl.java
index e2b81f8..643e7bf 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/controls/AccountUsableRequestControl.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/controls/AccountUsableRequestControl.java
@@ -12,24 +12,21 @@
* information: "Portions Copyright [year] [name of copyright owner]".
*
* Copyright 2006-2008 Sun Microsystems, Inc.
- * Portions Copyright 2014-2015 ForgeRock AS.
+ * Portions Copyright 2014-2016 ForgeRock AS.
*/
package org.opends.server.controls;
-import org.forgerock.i18n.LocalizableMessage;
-
-
-
-import org.forgerock.opendj.io.ASN1Writer;
-import org.forgerock.opendj.ldap.ByteString;
-import org.opends.server.types.Control;
-import org.opends.server.types.DirectoryException;
-import org.forgerock.opendj.ldap.ResultCode;
import static org.opends.messages.ProtocolMessages.*;
import static org.opends.server.util.ServerConstants.*;
import java.io.IOException;
+import org.forgerock.i18n.LocalizableMessage;
+import org.forgerock.opendj.io.ASN1Writer;
+import org.forgerock.opendj.ldap.ByteString;
+import org.forgerock.opendj.ldap.ResultCode;
+import org.opends.server.types.Control;
+import org.opends.server.types.DirectoryException;
/**
* This class implements the Sun-defined account usable request control. The
@@ -39,13 +36,11 @@
public class AccountUsableRequestControl
extends Control
{
- /**
- * ControlDecoder implementation to decode this control from a ByteString.
- */
+ /** ControlDecoder implementation to decode this control from a ByteString. */
private static final class Decoder
implements ControlDecoder<AccountUsableRequestControl>
{
- /** {@inheritDoc} */
+ @Override
public AccountUsableRequestControl decode(boolean isCritical,
ByteString value)
throws DirectoryException
@@ -60,6 +55,7 @@
return new AccountUsableRequestControl(isCritical);
}
+ @Override
public String getOID()
{
return OID_ACCOUNT_USABLE_CONTROL;
@@ -67,16 +63,11 @@
}
- /**
- * The Control Decoder that can be used to decode this control.
- */
+ /** The Control Decoder that can be used to decode this control. */
public static final ControlDecoder<AccountUsableRequestControl> DECODER =
new Decoder();
- /**
- * Creates a new instance of the account usable request control with the
- * default settings.
- */
+ /** Creates a new instance of the account usable request control with the default settings. */
public AccountUsableRequestControl()
{
this(false);
@@ -93,28 +84,14 @@
public AccountUsableRequestControl(boolean isCritical)
{
super(OID_ACCOUNT_USABLE_CONTROL, isCritical);
-
}
- /**
- * Writes this control's value to an ASN.1 writer. The value (if any) must be
- * written as an ASN1OctetString.
- *
- * @param writer The ASN.1 output stream to write to.
- * @throws IOException If a problem occurs while writing to the stream.
- */
+ @Override
protected void writeValue(ASN1Writer writer) throws IOException {
// No value element.
}
-
-
- /**
- * Appends a string representation of this account usable request control to
- * the provided buffer.
- *
- * @param buffer The buffer to which the information should be appended.
- */
+ @Override
public void toString(StringBuilder buffer)
{
buffer.append("AccountUsableRequestControl()");
--
Gitblit v1.10.0