mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Jean-Noël Rouvignac
20.42.2016 61b9eb1be03fc03a9f4bb0013a08ff44a1059503
opendj-server-legacy/src/main/java/org/opends/server/controls/PasswordPolicyRequestControl.java
@@ -12,7 +12,7 @@
 * 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;
@@ -38,13 +38,11 @@
public class PasswordPolicyRequestControl
       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<PasswordPolicyRequestControl>
  {
    /** {@inheritDoc} */
    @Override
    public PasswordPolicyRequestControl decode(boolean isCritical,
                                               ByteString value)
        throws DirectoryException
@@ -59,6 +57,7 @@
      return new PasswordPolicyRequestControl(isCritical);
    }
    @Override
    public String getOID()
    {
      return OID_PASSWORD_POLICY_CONTROL;
@@ -66,17 +65,12 @@
  }
  /**
   * 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<PasswordPolicyRequestControl> DECODER =
    new Decoder();
  /**
   * Creates a new instance of the password policy request control with the
   * default settings.
   */
  /** Creates a new instance of the password policy request control with the default settings. */
  public PasswordPolicyRequestControl()
  {
    this(false);
@@ -98,28 +92,11 @@
  }
  /**
   * 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
  public void writeValue(ASN1Writer writer) throws IOException {
    // No value element.
  }
  /**
   * Appends a string representation of this password policy request control to
   * the provided buffer.
   *
   * @param  buffer  The buffer to which the information should be appended.
   */
  @Override
  public void toString(StringBuilder buffer)
  {