Class DigestSchemeFactory

    • Constructor Summary

      Constructors 
      Constructor Description
      DigestSchemeFactory()  
      DigestSchemeFactory​(java.nio.charset.Charset charset)
      Deprecated.
      This constructor is deprecated to enforce the use of StandardCharsets.UTF_8 encoding in compliance with RFC 7616 for HTTP Digest Access Authentication.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      AuthScheme create​(org.apache.hc.core5.http.protocol.HttpContext context)
      Creates an instance of AuthScheme.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • DigestSchemeFactory

        @Deprecated
        public DigestSchemeFactory​(java.nio.charset.Charset charset)
        Deprecated.
        This constructor is deprecated to enforce the use of StandardCharsets.UTF_8 encoding in compliance with RFC 7616 for HTTP Digest Access Authentication. Use the default constructor DigestSchemeFactory() instead.
        Parameters:
        charset - the Charset set to be used for encoding credentials. This parameter is ignored as UTF-8 is always used.
      • DigestSchemeFactory

        public DigestSchemeFactory()