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/PasswordExpiringControl.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;
@@ -40,13 +40,11 @@
public class PasswordExpiringControl
       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<PasswordExpiringControl>
  {
    /** {@inheritDoc} */
    @Override
    public PasswordExpiringControl decode(boolean isCritical, ByteString value)
        throws DirectoryException
    {
@@ -76,6 +74,7 @@
          secondsUntilExpiration);
    }
    @Override
    public String getOID()
    {
      return OID_NS_PASSWORD_EXPIRING;
@@ -83,9 +82,7 @@
  }
  /**
   * 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<PasswordExpiringControl> DECODER =
    new Decoder();
  private static final LocalizedLogger logger = LocalizedLogger.getLoggerForThisClass();
@@ -130,14 +127,6 @@
    this.secondsUntilExpiration = secondsUntilExpiration;
  }
  /**
   * 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 {
    writer.writeOctetString(String.valueOf(secondsUntilExpiration));