public final class org.apache.http.auth.AuthOption
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.apache.http.auth.AuthOption
  super_class: java.lang.Object
{
  private final org.apache.http.auth.AuthScheme authScheme;
    descriptor: Lorg/apache/http/auth/AuthScheme;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.apache.http.auth.Credentials creds;
    descriptor: Lorg/apache/http/auth/Credentials;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(org.apache.http.auth.AuthScheme, org.apache.http.auth.Credentials);
    descriptor: (Lorg/apache/http/auth/AuthScheme;Lorg/apache/http/auth/Credentials;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.apache.http.auth.AuthOption this
        start local 1 // org.apache.http.auth.AuthScheme authScheme
        start local 2 // org.apache.http.auth.Credentials creds
         0: .line 43
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 44
            aload 1 /* authScheme */
            ldc "Auth scheme"
            invokestatic org.apache.http.util.Args.notNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         2: .line 45
            aload 2 /* creds */
            ldc "User credentials"
            invokestatic org.apache.http.util.Args.notNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         3: .line 46
            aload 0 /* this */
            aload 1 /* authScheme */
            putfield org.apache.http.auth.AuthOption.authScheme:Lorg/apache/http/auth/AuthScheme;
         4: .line 47
            aload 0 /* this */
            aload 2 /* creds */
            putfield org.apache.http.auth.AuthOption.creds:Lorg/apache/http/auth/Credentials;
         5: .line 48
            return
        end local 2 // org.apache.http.auth.Credentials creds
        end local 1 // org.apache.http.auth.AuthScheme authScheme
        end local 0 // org.apache.http.auth.AuthOption this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    6     0        this  Lorg/apache/http/auth/AuthOption;
            0    6     1  authScheme  Lorg/apache/http/auth/AuthScheme;
            0    6     2       creds  Lorg/apache/http/auth/Credentials;
    MethodParameters:
            Name  Flags
      authScheme  final
      creds       final

  public org.apache.http.auth.AuthScheme getAuthScheme();
    descriptor: ()Lorg/apache/http/auth/AuthScheme;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.http.auth.AuthOption this
         0: .line 51
            aload 0 /* this */
            getfield org.apache.http.auth.AuthOption.authScheme:Lorg/apache/http/auth/AuthScheme;
            areturn
        end local 0 // org.apache.http.auth.AuthOption this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/http/auth/AuthOption;

  public org.apache.http.auth.Credentials getCredentials();
    descriptor: ()Lorg/apache/http/auth/Credentials;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.http.auth.AuthOption this
         0: .line 55
            aload 0 /* this */
            getfield org.apache.http.auth.AuthOption.creds:Lorg/apache/http/auth/Credentials;
            areturn
        end local 0 // org.apache.http.auth.AuthOption this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/http/auth/AuthOption;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.http.auth.AuthOption this
         0: .line 60
            aload 0 /* this */
            getfield org.apache.http.auth.AuthOption.authScheme:Lorg/apache/http/auth/AuthScheme;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.apache.http.auth.AuthOption this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/http/auth/AuthOption;
}
SourceFile: "AuthOption.java"
    RuntimeInvisibleAnnotations: 
      org.apache.http.annotation.Contract(threading = org.apache.http.annotation.ThreadingBehavior.IMMUTABLE:Lorg/apache/http/annotation/ThreadingBehavior;)