public abstract class com.mongodb.internal.connection.Authenticator
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: com.mongodb.internal.connection.Authenticator
  super_class: java.lang.Object
{
  private final com.mongodb.internal.connection.MongoCredentialWithCache credential;
    descriptor: Lcom/mongodb/internal/connection/MongoCredentialWithCache;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(com.mongodb.internal.connection.MongoCredentialWithCache);
    descriptor: (Lcom/mongodb/internal/connection/MongoCredentialWithCache;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.mongodb.internal.connection.Authenticator this
        start local 1 // com.mongodb.internal.connection.MongoCredentialWithCache credential
         0: .line 29
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 30
            aload 0 /* this */
            aload 1 /* credential */
            putfield com.mongodb.internal.connection.Authenticator.credential:Lcom/mongodb/internal/connection/MongoCredentialWithCache;
         2: .line 31
            return
        end local 1 // com.mongodb.internal.connection.MongoCredentialWithCache credential
        end local 0 // com.mongodb.internal.connection.Authenticator this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lcom/mongodb/internal/connection/Authenticator;
            0    3     1  credential  Lcom/mongodb/internal/connection/MongoCredentialWithCache;
    RuntimeVisibleParameterAnnotations: 
      0:
        com.mongodb.lang.NonNull()
    MethodParameters:
            Name  Flags
      credential  final

  com.mongodb.internal.connection.MongoCredentialWithCache getMongoCredentialWithCache();
    descriptor: ()Lcom/mongodb/internal/connection/MongoCredentialWithCache;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.internal.connection.Authenticator this
         0: .line 35
            aload 0 /* this */
            getfield com.mongodb.internal.connection.Authenticator.credential:Lcom/mongodb/internal/connection/MongoCredentialWithCache;
            areturn
        end local 0 // com.mongodb.internal.connection.Authenticator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/internal/connection/Authenticator;
    RuntimeVisibleAnnotations: 
      com.mongodb.lang.NonNull()

  com.mongodb.MongoCredential getMongoCredential();
    descriptor: ()Lcom/mongodb/MongoCredential;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.internal.connection.Authenticator this
         0: .line 40
            aload 0 /* this */
            getfield com.mongodb.internal.connection.Authenticator.credential:Lcom/mongodb/internal/connection/MongoCredentialWithCache;
            invokevirtual com.mongodb.internal.connection.MongoCredentialWithCache.getCredential:()Lcom/mongodb/MongoCredential;
            areturn
        end local 0 // com.mongodb.internal.connection.Authenticator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/internal/connection/Authenticator;
    RuntimeVisibleAnnotations: 
      com.mongodb.lang.NonNull()

  java.lang.String getUserNameNonNull();
    descriptor: ()Ljava/lang/String;
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.mongodb.internal.connection.Authenticator this
         0: .line 45
            aload 0 /* this */
            getfield com.mongodb.internal.connection.Authenticator.credential:Lcom/mongodb/internal/connection/MongoCredentialWithCache;
            invokevirtual com.mongodb.internal.connection.MongoCredentialWithCache.getCredential:()Lcom/mongodb/MongoCredential;
            invokevirtual com.mongodb.MongoCredential.getUserName:()Ljava/lang/String;
            astore 1 /* userName */
        start local 1 // java.lang.String userName
         1: .line 46
            aload 1 /* userName */
            ifnonnull 3
         2: .line 47
            new com.mongodb.MongoInternalException
            dup
            ldc "User name can not be null"
            invokespecial com.mongodb.MongoInternalException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 49
      StackMap locals: java.lang.String
      StackMap stack:
            aload 1 /* userName */
            areturn
        end local 1 // java.lang.String userName
        end local 0 // com.mongodb.internal.connection.Authenticator this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lcom/mongodb/internal/connection/Authenticator;
            1    4     1  userName  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      com.mongodb.lang.NonNull()

  char[] getPasswordNonNull();
    descriptor: ()[C
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.mongodb.internal.connection.Authenticator this
         0: .line 54
            aload 0 /* this */
            getfield com.mongodb.internal.connection.Authenticator.credential:Lcom/mongodb/internal/connection/MongoCredentialWithCache;
            invokevirtual com.mongodb.internal.connection.MongoCredentialWithCache.getCredential:()Lcom/mongodb/MongoCredential;
            invokevirtual com.mongodb.MongoCredential.getPassword:()[C
            astore 1 /* password */
        start local 1 // char[] password
         1: .line 55
            aload 1 /* password */
            ifnonnull 3
         2: .line 56
            new com.mongodb.MongoInternalException
            dup
            ldc "Password can not be null"
            invokespecial com.mongodb.MongoInternalException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 58
      StackMap locals: char[]
      StackMap stack:
            aload 1 /* password */
            areturn
        end local 1 // char[] password
        end local 0 // com.mongodb.internal.connection.Authenticator this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lcom/mongodb/internal/connection/Authenticator;
            1    4     1  password  [C
    RuntimeVisibleAnnotations: 
      com.mongodb.lang.NonNull()

  <T> T getNonNullMechanismProperty(java.lang.String, );
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // com.mongodb.internal.connection.Authenticator this
        start local 1 // java.lang.String key
        start local 2 // java.lang.Object defaultValue
         0: .line 63
            aload 0 /* this */
            getfield com.mongodb.internal.connection.Authenticator.credential:Lcom/mongodb/internal/connection/MongoCredentialWithCache;
            invokevirtual com.mongodb.internal.connection.MongoCredentialWithCache.getCredential:()Lcom/mongodb/MongoCredential;
            aload 1 /* key */
            aload 2 /* defaultValue */
            invokevirtual com.mongodb.MongoCredential.getMechanismProperty:(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
            astore 3 /* mechanismProperty */
        start local 3 // java.lang.Object mechanismProperty
         1: .line 64
            aload 3 /* mechanismProperty */
            ifnonnull 3
         2: .line 65
            new com.mongodb.MongoInternalException
            dup
            ldc "Mechanism property can not be null"
            invokespecial com.mongodb.MongoInternalException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 67
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 3 /* mechanismProperty */
            areturn
        end local 3 // java.lang.Object mechanismProperty
        end local 2 // java.lang.Object defaultValue
        end local 1 // java.lang.String key
        end local 0 // com.mongodb.internal.connection.Authenticator this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    4     0               this  Lcom/mongodb/internal/connection/Authenticator;
            0    4     1                key  Ljava/lang/String;
            0    4     2       defaultValue  TT;
            1    4     3  mechanismProperty  TT;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/String;TT;)TT;
    RuntimeVisibleAnnotations: 
      com.mongodb.lang.NonNull()
    RuntimeVisibleParameterAnnotations: 
      0:
      1:
        com.mongodb.lang.Nullable()
    MethodParameters:
              Name  Flags
      key           final
      defaultValue  final

  abstract void authenticate(com.mongodb.internal.connection.InternalConnection, com.mongodb.connection.ConnectionDescription);
    descriptor: (Lcom/mongodb/internal/connection/InternalConnection;Lcom/mongodb/connection/ConnectionDescription;)V
    flags: (0x0400) ACC_ABSTRACT
    MethodParameters:
                       Name  Flags
      connection             
      connectionDescription  

  abstract void authenticateAsync(com.mongodb.internal.connection.InternalConnection, com.mongodb.connection.ConnectionDescription, com.mongodb.async.SingleResultCallback<java.lang.Void>);
    descriptor: (Lcom/mongodb/internal/connection/InternalConnection;Lcom/mongodb/connection/ConnectionDescription;Lcom/mongodb/async/SingleResultCallback;)V
    flags: (0x0400) ACC_ABSTRACT
    Signature: (Lcom/mongodb/internal/connection/InternalConnection;Lcom/mongodb/connection/ConnectionDescription;Lcom/mongodb/async/SingleResultCallback<Ljava/lang/Void;>;)V
    MethodParameters:
                       Name  Flags
      connection             
      connectionDescription  
      callback               
}
SourceFile: "Authenticator.java"