public class com.mongodb.operation.UserExistsOperation implements com.mongodb.operation.AsyncReadOperation<java.lang.Boolean>, com.mongodb.operation.ReadOperation<java.lang.Boolean>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.mongodb.operation.UserExistsOperation
  super_class: java.lang.Object
{
  private final java.lang.String databaseName;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String userName;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private boolean retryReads;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  public void <init>(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.mongodb.operation.UserExistsOperation this
        start local 1 // java.lang.String databaseName
        start local 2 // java.lang.String userName
         0: .line 61
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 62
            aload 0 /* this */
            ldc "databaseName"
            aload 1 /* databaseName */
            invokestatic com.mongodb.assertions.Assertions.notNull:(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.String
            putfield com.mongodb.operation.UserExistsOperation.databaseName:Ljava/lang/String;
         2: .line 63
            aload 0 /* this */
            ldc "userName"
            aload 2 /* userName */
            invokestatic com.mongodb.assertions.Assertions.notNull:(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.String
            putfield com.mongodb.operation.UserExistsOperation.userName:Ljava/lang/String;
         3: .line 64
            return
        end local 2 // java.lang.String userName
        end local 1 // java.lang.String databaseName
        end local 0 // com.mongodb.operation.UserExistsOperation this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    4     0          this  Lcom/mongodb/operation/UserExistsOperation;
            0    4     1  databaseName  Ljava/lang/String;
            0    4     2      userName  Ljava/lang/String;
    MethodParameters:
              Name  Flags
      databaseName  final
      userName      final

  public com.mongodb.operation.UserExistsOperation retryReads(boolean);
    descriptor: (Z)Lcom/mongodb/operation/UserExistsOperation;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.mongodb.operation.UserExistsOperation this
        start local 1 // boolean retryReads
         0: .line 74
            aload 0 /* this */
            iload 1 /* retryReads */
            putfield com.mongodb.operation.UserExistsOperation.retryReads:Z
         1: .line 75
            aload 0 /* this */
            areturn
        end local 1 // boolean retryReads
        end local 0 // com.mongodb.operation.UserExistsOperation this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lcom/mongodb/operation/UserExistsOperation;
            0    2     1  retryReads  Z
    MethodParameters:
            Name  Flags
      retryReads  final

  public boolean getRetryReads();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.operation.UserExistsOperation this
         0: .line 85
            aload 0 /* this */
            getfield com.mongodb.operation.UserExistsOperation.retryReads:Z
            ireturn
        end local 0 // com.mongodb.operation.UserExistsOperation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/operation/UserExistsOperation;

  public java.lang.Boolean execute(com.mongodb.binding.ReadBinding);
    descriptor: (Lcom/mongodb/binding/ReadBinding;)Ljava/lang/Boolean;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.mongodb.operation.UserExistsOperation this
        start local 1 // com.mongodb.binding.ReadBinding binding
         0: .line 90
            aload 1 /* binding */
            new com.mongodb.operation.UserExistsOperation$1
            dup
            aload 0 /* this */
            aload 1 /* binding */
            invokespecial com.mongodb.operation.UserExistsOperation$1.<init>:(Lcom/mongodb/operation/UserExistsOperation;Lcom/mongodb/binding/ReadBinding;)V
            invokestatic com.mongodb.operation.OperationHelper.withConnection:(Lcom/mongodb/binding/ReadBinding;Lcom/mongodb/operation/OperationHelper$CallableWithConnection;)Ljava/lang/Object;
            checkcast java.lang.Boolean
            areturn
        end local 1 // com.mongodb.binding.ReadBinding binding
        end local 0 // com.mongodb.operation.UserExistsOperation this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lcom/mongodb/operation/UserExistsOperation;
            0    1     1  binding  Lcom/mongodb/binding/ReadBinding;
    MethodParameters:
         Name  Flags
      binding  final

  public void executeAsync(com.mongodb.binding.AsyncReadBinding, com.mongodb.async.SingleResultCallback<java.lang.Boolean>);
    descriptor: (Lcom/mongodb/binding/AsyncReadBinding;Lcom/mongodb/async/SingleResultCallback;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=3, args_size=3
        start local 0 // com.mongodb.operation.UserExistsOperation this
        start local 1 // com.mongodb.binding.AsyncReadBinding binding
        start local 2 // com.mongodb.async.SingleResultCallback callback
         0: .line 100
            aload 1 /* binding */
            aload 0 /* this */
            getfield com.mongodb.operation.UserExistsOperation.databaseName:Ljava/lang/String;
            aload 0 /* this */
            invokevirtual com.mongodb.operation.UserExistsOperation.getCommandCreator:()Lcom/mongodb/operation/CommandOperationHelper$CommandCreator;
            new org.bson.codecs.BsonDocumentCodec
            dup
            invokespecial org.bson.codecs.BsonDocumentCodec.<init>:()V
         1: .line 101
            aload 0 /* this */
            invokevirtual com.mongodb.operation.UserExistsOperation.asyncTransformer:()Lcom/mongodb/operation/CommandOperationHelper$CommandReadTransformerAsync;
            aload 0 /* this */
            getfield com.mongodb.operation.UserExistsOperation.retryReads:Z
            aload 2 /* callback */
            getstatic com.mongodb.operation.OperationHelper.LOGGER:Lcom/mongodb/diagnostics/logging/Logger;
            invokestatic com.mongodb.internal.async.ErrorHandlingResultCallback.errorHandlingCallback:(Lcom/mongodb/async/SingleResultCallback;Lcom/mongodb/diagnostics/logging/Logger;)Lcom/mongodb/async/SingleResultCallback;
         2: .line 100
            invokestatic com.mongodb.operation.CommandOperationHelper.executeCommandAsync:(Lcom/mongodb/binding/AsyncReadBinding;Ljava/lang/String;Lcom/mongodb/operation/CommandOperationHelper$CommandCreator;Lorg/bson/codecs/Decoder;Lcom/mongodb/operation/CommandOperationHelper$CommandReadTransformerAsync;ZLcom/mongodb/async/SingleResultCallback;)V
         3: .line 102
            return
        end local 2 // com.mongodb.async.SingleResultCallback callback
        end local 1 // com.mongodb.binding.AsyncReadBinding binding
        end local 0 // com.mongodb.operation.UserExistsOperation this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lcom/mongodb/operation/UserExistsOperation;
            0    4     1   binding  Lcom/mongodb/binding/AsyncReadBinding;
            0    4     2  callback  Lcom/mongodb/async/SingleResultCallback<Ljava/lang/Boolean;>;
    Signature: (Lcom/mongodb/binding/AsyncReadBinding;Lcom/mongodb/async/SingleResultCallback<Ljava/lang/Boolean;>;)V
    MethodParameters:
          Name  Flags
      binding   final
      callback  final

  private com.mongodb.operation.CommandOperationHelper$CommandReadTransformer<org.bson.BsonDocument, java.lang.Boolean> transformer();
    descriptor: ()Lcom/mongodb/operation/CommandOperationHelper$CommandReadTransformer;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.mongodb.operation.UserExistsOperation this
         0: .line 105
            new com.mongodb.operation.UserExistsOperation$2
            dup
            aload 0 /* this */
            invokespecial com.mongodb.operation.UserExistsOperation$2.<init>:(Lcom/mongodb/operation/UserExistsOperation;)V
            areturn
        end local 0 // com.mongodb.operation.UserExistsOperation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/operation/UserExistsOperation;
    Signature: ()Lcom/mongodb/operation/CommandOperationHelper$CommandReadTransformer<Lorg/bson/BsonDocument;Ljava/lang/Boolean;>;

  private com.mongodb.operation.CommandOperationHelper$CommandReadTransformerAsync<org.bson.BsonDocument, java.lang.Boolean> asyncTransformer();
    descriptor: ()Lcom/mongodb/operation/CommandOperationHelper$CommandReadTransformerAsync;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.mongodb.operation.UserExistsOperation this
         0: .line 114
            new com.mongodb.operation.UserExistsOperation$3
            dup
            aload 0 /* this */
            invokespecial com.mongodb.operation.UserExistsOperation$3.<init>:(Lcom/mongodb/operation/UserExistsOperation;)V
            areturn
        end local 0 // com.mongodb.operation.UserExistsOperation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/operation/UserExistsOperation;
    Signature: ()Lcom/mongodb/operation/CommandOperationHelper$CommandReadTransformerAsync<Lorg/bson/BsonDocument;Ljava/lang/Boolean;>;

  private com.mongodb.operation.CommandOperationHelper$CommandCreator getCommandCreator();
    descriptor: ()Lcom/mongodb/operation/CommandOperationHelper$CommandCreator;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.mongodb.operation.UserExistsOperation this
         0: .line 123
            new com.mongodb.operation.UserExistsOperation$4
            dup
            aload 0 /* this */
            invokespecial com.mongodb.operation.UserExistsOperation$4.<init>:(Lcom/mongodb/operation/UserExistsOperation;)V
            areturn
        end local 0 // com.mongodb.operation.UserExistsOperation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/operation/UserExistsOperation;

  private org.bson.BsonDocument getCommand();
    descriptor: ()Lorg/bson/BsonDocument;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // com.mongodb.operation.UserExistsOperation this
         0: .line 132
            new org.bson.BsonDocument
            dup
            ldc "usersInfo"
            new org.bson.BsonString
            dup
            aload 0 /* this */
            getfield com.mongodb.operation.UserExistsOperation.userName:Ljava/lang/String;
            invokespecial org.bson.BsonString.<init>:(Ljava/lang/String;)V
            invokespecial org.bson.BsonDocument.<init>:(Ljava/lang/String;Lorg/bson/BsonValue;)V
            areturn
        end local 0 // com.mongodb.operation.UserExistsOperation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/operation/UserExistsOperation;

  public java.lang.Object execute(com.mongodb.binding.ReadBinding);
    descriptor: (Lcom/mongodb/binding/ReadBinding;)Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual com.mongodb.operation.UserExistsOperation.execute:(Lcom/mongodb/binding/ReadBinding;)Ljava/lang/Boolean;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Ljava/lang/Object;Lcom/mongodb/operation/AsyncReadOperation<Ljava/lang/Boolean;>;Lcom/mongodb/operation/ReadOperation<Ljava/lang/Boolean;>;
SourceFile: "UserExistsOperation.java"
NestMembers:
  com.mongodb.operation.UserExistsOperation$1  com.mongodb.operation.UserExistsOperation$2  com.mongodb.operation.UserExistsOperation$3  com.mongodb.operation.UserExistsOperation$4
InnerClasses:
  abstract CommandCreator = com.mongodb.operation.CommandOperationHelper$CommandCreator of com.mongodb.operation.CommandOperationHelper
  abstract CommandReadTransformer = com.mongodb.operation.CommandOperationHelper$CommandReadTransformer of com.mongodb.operation.CommandOperationHelper
  abstract CommandReadTransformerAsync = com.mongodb.operation.CommandOperationHelper$CommandReadTransformerAsync of com.mongodb.operation.CommandOperationHelper
  abstract CallableWithConnection = com.mongodb.operation.OperationHelper$CallableWithConnection of com.mongodb.operation.OperationHelper
  com.mongodb.operation.UserExistsOperation$1
  com.mongodb.operation.UserExistsOperation$2
  com.mongodb.operation.UserExistsOperation$3
  com.mongodb.operation.UserExistsOperation$4
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()