Class DigestParameters

java.lang.Object
org.apache.jmeter.protocol.http.api.auth.DigestParameters

public class DigestParameters extends Object
Allows digest customization as per: https://en.wikipedia.org/wiki/Digest_access_authentication
Since:
5.0
  • Field Details

  • Constructor Details

    • DigestParameters

      public DigestParameters()
  • Method Details

    • getQop

      public String getQop()
      Returns:
      the quality of protection
    • setQop

      public void setQop(String qop)
      Parameters:
      qop - the quality of protection to set
    • getNonce

      public String getNonce()
      Returns:
      the nonce
    • setNonce

      public void setNonce(String nonce)
      Parameters:
      nonce - the nonce to set
    • getCharset

      public String getCharset()
      Returns:
      the charset
    • setCharset

      public void setCharset(String charset)
      Parameters:
      charset - the charset to set
    • getAlgorithm

      public String getAlgorithm()
      Returns:
      the algorithm (MD5 usually)
    • setAlgorithm

      public void setAlgorithm(String algorithm)
      Parameters:
      algorithm - the algorithm to set
    • getOpaque

      public String getOpaque()
      Returns:
      the opaque
    • setOpaque

      public void setOpaque(String opaque)
      Parameters:
      opaque - the opaque to set