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

neil_a_wilson
01.18.2007 a49dee3f75d6e2548e9114d9495655dd56f06973
opends/src/server/org/opends/server/controls/AccountUsableResponseControl.java
@@ -392,8 +392,6 @@
   */
  private static ASN1OctetString encodeValue(int secondsBeforeExpiration)
  {
    ASN1Integer sbeInteger = new ASN1Integer(TYPE_SECONDS_BEFORE_EXPIRATION,
                                             secondsBeforeExpiration);
@@ -434,8 +432,6 @@
                                             boolean isLocked,
                                             int secondsBeforeUnlock)
  {
    ArrayList<ASN1Element> elements = new ArrayList<ASN1Element>(5);
    if (isInactive)
@@ -488,8 +484,6 @@
  public static AccountUsableResponseControl decodeControl(Control control)
         throws LDAPException
  {
    ASN1OctetString controlValue = control.getValue();
    if (controlValue == null)
    {
@@ -602,7 +596,6 @@
   */
  public boolean isUsable()
  {
    return isUsable;
  }
@@ -618,7 +611,6 @@
   */
  public int getSecondsBeforeExpiration()
  {
    return secondsBeforeExpiration;
  }
@@ -633,7 +625,6 @@
   */
  public boolean isInactive()
  {
    return isInactive;
  }
@@ -649,7 +640,6 @@
   */
  public boolean isReset()
  {
    return isReset;
  }
@@ -663,7 +653,6 @@
   */
  public boolean isExpired()
  {
    return isExpired;
  }
@@ -678,7 +667,6 @@
   */
  public int getRemainingGraceLogins()
  {
    return remainingGraceLogins;
  }
@@ -692,7 +680,6 @@
   */
  public boolean isLocked()
  {
    return isLocked;
  }
@@ -709,7 +696,6 @@
   */
  public int getSecondsBeforeUnlock()
  {
    return secondsBeforeUnlock;
  }
@@ -722,7 +708,6 @@
   */
  public String toString()
  {
    StringBuilder buffer = new StringBuilder();
    toString(buffer);
    return buffer.toString();
@@ -738,7 +723,6 @@
   */
  public void toString(StringBuilder buffer)
  {
    buffer.append("AccountUsableResponseControl(isUsable=");
    buffer.append(isUsable);