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

boli
01.27.2007 455897cc245b67d929f409a93cfa7106e835cc1f
opends/src/server/org/opends/server/extensions/DigestMD5StateInfo.java
@@ -22,16 +22,11 @@
 * CDDL HEADER END
 *
 *
 *      Portions Copyright 2006 Sun Microsystems, Inc.
 *      Portions Copyright 2006-2007 Sun Microsystems, Inc.
 */
package org.opends.server.extensions;
import static org.opends.server.loggers.Debug.*;
/**
 * This class defines a data structure that will hold state information for use
 * in the DIGEST-MD5 authentication process.  This information will support both
@@ -39,11 +34,6 @@
 */
public class DigestMD5StateInfo
{
  /**
   * The fully-qualified name of this class for debugging purposes.
   */
  private static final String CLASS_NAME =
       "org.opends.server.extensions.DigestMD5StateInfo";
@@ -66,8 +56,6 @@
   */
  public DigestMD5StateInfo(String nonce, String nonceCount)
  {
    assert debugConstructor(CLASS_NAME, String.valueOf(nonce),
                            String.valueOf(nonceCount));
    this.nonce      = nonce;
    this.nonceCount = nonceCount;
@@ -83,7 +71,6 @@
   */
  public String getNonce()
  {
    assert debugEnter(CLASS_NAME, "getNonce");
    return nonce;
  }
@@ -99,7 +86,6 @@
   */
  public String getNonceCount()
  {
    assert debugEnter(CLASS_NAME, "getNonceCount");
    return nonceCount;
  }
@@ -115,7 +101,6 @@
   */
  public void setNonceCount(String nonceCount)
  {
    assert debugEnter(CLASS_NAME, "setNonceCount", String.valueOf(nonceCount));
    this.nonceCount = nonceCount;
  }