Class AuthSchemes

java.lang.Object
org.apache.http.client.config.AuthSchemes

@Immutable public final class AuthSchemes extends Object
Standard authentication schemes supported by HttpClient.
Since:
4.3
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    Basic authentication scheme as defined in RFC2617 (considered inherently insecure, but most widely supported)
    static final String
    Digest authentication scheme as defined in RFC2617.
    static final String
    Kerberos Authentication scheme.
    static final String
    The NTLM scheme is a proprietary Microsoft Windows Authentication protocol (considered to be the most secure among currently supported authentication schemes).
    static final String
    SPNEGO Authentication scheme.
  • Method Summary

    Methods inherited from class Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • BASIC

      public static final String BASIC
      Basic authentication scheme as defined in RFC2617 (considered inherently insecure, but most widely supported)
      See Also:
    • DIGEST

      public static final String DIGEST
      Digest authentication scheme as defined in RFC2617.
      See Also:
    • NTLM

      public static final String NTLM
      The NTLM scheme is a proprietary Microsoft Windows Authentication protocol (considered to be the most secure among currently supported authentication schemes).
      See Also:
    • SPNEGO

      public static final String SPNEGO
      SPNEGO Authentication scheme.
      See Also:
    • KERBEROS

      public static final String KERBEROS
      Kerberos Authentication scheme.
      See Also: