public class org.springframework.transaction.reactive.TransactionContext
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.transaction.reactive.TransactionContext
  super_class: java.lang.Object
{
  private final org.springframework.transaction.reactive.TransactionContext parent;
    descriptor: Lorg/springframework/transaction/reactive/TransactionContext;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  private final java.util.UUID contextId;
    descriptor: Ljava/util/UUID;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.Map<java.lang.Object, java.lang.Object> resources;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<Ljava/lang/Object;Ljava/lang/Object;>;

  private java.util.Set<org.springframework.transaction.reactive.TransactionSynchronization> synchronizations;
    descriptor: Ljava/util/Set;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Set<Lorg/springframework/transaction/reactive/TransactionSynchronization;>;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  private volatile java.lang.String currentTransactionName;
    descriptor: Ljava/lang/String;
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  private volatile boolean currentTransactionReadOnly;
    descriptor: Z
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private volatile java.lang.Integer currentTransactionIsolationLevel;
    descriptor: Ljava/lang/Integer;
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  private volatile boolean actualTransactionActive;
    descriptor: Z
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.springframework.transaction.reactive.TransactionContext this
         0: .line 60
            aload 0 /* this */
            aconst_null
            invokespecial org.springframework.transaction.reactive.TransactionContext.<init>:(Lorg/springframework/transaction/reactive/TransactionContext;)V
         1: .line 61
            return
        end local 0 // org.springframework.transaction.reactive.TransactionContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/springframework/transaction/reactive/TransactionContext;

  void <init>(org.springframework.transaction.reactive.TransactionContext);
    descriptor: (Lorg/springframework/transaction/reactive/TransactionContext;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.springframework.transaction.reactive.TransactionContext this
        start local 1 // org.springframework.transaction.reactive.TransactionContext parent
         0: .line 63
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 43
            aload 0 /* this */
            invokestatic java.util.UUID.randomUUID:()Ljava/util/UUID;
            putfield org.springframework.transaction.reactive.TransactionContext.contextId:Ljava/util/UUID;
         2: .line 45
            aload 0 /* this */
            new java.util.LinkedHashMap
            dup
            invokespecial java.util.LinkedHashMap.<init>:()V
            putfield org.springframework.transaction.reactive.TransactionContext.resources:Ljava/util/Map;
         3: .line 64
            aload 0 /* this */
            aload 1 /* parent */
            putfield org.springframework.transaction.reactive.TransactionContext.parent:Lorg/springframework/transaction/reactive/TransactionContext;
         4: .line 65
            return
        end local 1 // org.springframework.transaction.reactive.TransactionContext parent
        end local 0 // org.springframework.transaction.reactive.TransactionContext this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/springframework/transaction/reactive/TransactionContext;
            0    5     1  parent  Lorg/springframework/transaction/reactive/TransactionContext;
    RuntimeVisibleParameterAnnotations: 
      0:
        org.springframework.lang.Nullable()
    MethodParameters:
        Name  Flags
      parent  

  public org.springframework.transaction.reactive.TransactionContext getParent();
    descriptor: ()Lorg/springframework/transaction/reactive/TransactionContext;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.transaction.reactive.TransactionContext this
         0: .line 70
            aload 0 /* this */
            getfield org.springframework.transaction.reactive.TransactionContext.parent:Lorg/springframework/transaction/reactive/TransactionContext;
            areturn
        end local 0 // org.springframework.transaction.reactive.TransactionContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/transaction/reactive/TransactionContext;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  public java.lang.String getName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.springframework.transaction.reactive.TransactionContext this
         0: .line 74
            aload 0 /* this */
            getfield org.springframework.transaction.reactive.TransactionContext.currentTransactionName:Ljava/lang/String;
            invokestatic org.springframework.util.StringUtils.hasText:(Ljava/lang/String;)Z
            ifeq 2
         1: .line 75
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            aload 0 /* this */
            getfield org.springframework.transaction.reactive.TransactionContext.contextId:Ljava/util/UUID;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc ": "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.springframework.transaction.reactive.TransactionContext.currentTransactionName:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
         2: .line 77
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.springframework.transaction.reactive.TransactionContext.contextId:Ljava/util/UUID;
            invokevirtual java.util.UUID.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.springframework.transaction.reactive.TransactionContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/springframework/transaction/reactive/TransactionContext;

  public java.util.UUID getContextId();
    descriptor: ()Ljava/util/UUID;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.transaction.reactive.TransactionContext this
         0: .line 81
            aload 0 /* this */
            getfield org.springframework.transaction.reactive.TransactionContext.contextId:Ljava/util/UUID;
            areturn
        end local 0 // org.springframework.transaction.reactive.TransactionContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/transaction/reactive/TransactionContext;

  public java.util.Map<java.lang.Object, java.lang.Object> getResources();
    descriptor: ()Ljava/util/Map;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.transaction.reactive.TransactionContext this
         0: .line 85
            aload 0 /* this */
            getfield org.springframework.transaction.reactive.TransactionContext.resources:Ljava/util/Map;
            areturn
        end local 0 // org.springframework.transaction.reactive.TransactionContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/transaction/reactive/TransactionContext;
    Signature: ()Ljava/util/Map<Ljava/lang/Object;Ljava/lang/Object;>;

  public void setSynchronizations(java.util.Set<org.springframework.transaction.reactive.TransactionSynchronization>);
    descriptor: (Ljava/util/Set;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.transaction.reactive.TransactionContext this
        start local 1 // java.util.Set synchronizations
         0: .line 89
            aload 0 /* this */
            aload 1 /* synchronizations */
            putfield org.springframework.transaction.reactive.TransactionContext.synchronizations:Ljava/util/Set;
         1: .line 90
            return
        end local 1 // java.util.Set synchronizations
        end local 0 // org.springframework.transaction.reactive.TransactionContext this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lorg/springframework/transaction/reactive/TransactionContext;
            0    2     1  synchronizations  Ljava/util/Set<Lorg/springframework/transaction/reactive/TransactionSynchronization;>;
    Signature: (Ljava/util/Set<Lorg/springframework/transaction/reactive/TransactionSynchronization;>;)V
    RuntimeVisibleParameterAnnotations: 
      0:
        org.springframework.lang.Nullable()
    MethodParameters:
                  Name  Flags
      synchronizations  

  public java.util.Set<org.springframework.transaction.reactive.TransactionSynchronization> getSynchronizations();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.transaction.reactive.TransactionContext this
         0: .line 94
            aload 0 /* this */
            getfield org.springframework.transaction.reactive.TransactionContext.synchronizations:Ljava/util/Set;
            areturn
        end local 0 // org.springframework.transaction.reactive.TransactionContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/transaction/reactive/TransactionContext;
    Signature: ()Ljava/util/Set<Lorg/springframework/transaction/reactive/TransactionSynchronization;>;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  public void setCurrentTransactionName(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.transaction.reactive.TransactionContext this
        start local 1 // java.lang.String currentTransactionName
         0: .line 98
            aload 0 /* this */
            aload 1 /* currentTransactionName */
            putfield org.springframework.transaction.reactive.TransactionContext.currentTransactionName:Ljava/lang/String;
         1: .line 99
            return
        end local 1 // java.lang.String currentTransactionName
        end local 0 // org.springframework.transaction.reactive.TransactionContext this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0    2     0                    this  Lorg/springframework/transaction/reactive/TransactionContext;
            0    2     1  currentTransactionName  Ljava/lang/String;
    RuntimeVisibleParameterAnnotations: 
      0:
        org.springframework.lang.Nullable()
    MethodParameters:
                        Name  Flags
      currentTransactionName  

  public java.lang.String getCurrentTransactionName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.transaction.reactive.TransactionContext this
         0: .line 103
            aload 0 /* this */
            getfield org.springframework.transaction.reactive.TransactionContext.currentTransactionName:Ljava/lang/String;
            areturn
        end local 0 // org.springframework.transaction.reactive.TransactionContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/transaction/reactive/TransactionContext;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  public void setCurrentTransactionReadOnly(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.transaction.reactive.TransactionContext this
        start local 1 // boolean currentTransactionReadOnly
         0: .line 107
            aload 0 /* this */
            iload 1 /* currentTransactionReadOnly */
            putfield org.springframework.transaction.reactive.TransactionContext.currentTransactionReadOnly:Z
         1: .line 108
            return
        end local 1 // boolean currentTransactionReadOnly
        end local 0 // org.springframework.transaction.reactive.TransactionContext this
      LocalVariableTable:
        Start  End  Slot                        Name  Signature
            0    2     0                        this  Lorg/springframework/transaction/reactive/TransactionContext;
            0    2     1  currentTransactionReadOnly  Z
    MethodParameters:
                            Name  Flags
      currentTransactionReadOnly  

  public boolean isCurrentTransactionReadOnly();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.transaction.reactive.TransactionContext this
         0: .line 111
            aload 0 /* this */
            getfield org.springframework.transaction.reactive.TransactionContext.currentTransactionReadOnly:Z
            ireturn
        end local 0 // org.springframework.transaction.reactive.TransactionContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/transaction/reactive/TransactionContext;

  public void setCurrentTransactionIsolationLevel(java.lang.Integer);
    descriptor: (Ljava/lang/Integer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.transaction.reactive.TransactionContext this
        start local 1 // java.lang.Integer currentTransactionIsolationLevel
         0: .line 115
            aload 0 /* this */
            aload 1 /* currentTransactionIsolationLevel */
            putfield org.springframework.transaction.reactive.TransactionContext.currentTransactionIsolationLevel:Ljava/lang/Integer;
         1: .line 116
            return
        end local 1 // java.lang.Integer currentTransactionIsolationLevel
        end local 0 // org.springframework.transaction.reactive.TransactionContext this
      LocalVariableTable:
        Start  End  Slot                              Name  Signature
            0    2     0                              this  Lorg/springframework/transaction/reactive/TransactionContext;
            0    2     1  currentTransactionIsolationLevel  Ljava/lang/Integer;
    RuntimeVisibleParameterAnnotations: 
      0:
        org.springframework.lang.Nullable()
    MethodParameters:
                                  Name  Flags
      currentTransactionIsolationLevel  

  public java.lang.Integer getCurrentTransactionIsolationLevel();
    descriptor: ()Ljava/lang/Integer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.transaction.reactive.TransactionContext this
         0: .line 120
            aload 0 /* this */
            getfield org.springframework.transaction.reactive.TransactionContext.currentTransactionIsolationLevel:Ljava/lang/Integer;
            areturn
        end local 0 // org.springframework.transaction.reactive.TransactionContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/transaction/reactive/TransactionContext;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  public void setActualTransactionActive(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.transaction.reactive.TransactionContext this
        start local 1 // boolean actualTransactionActive
         0: .line 124
            aload 0 /* this */
            iload 1 /* actualTransactionActive */
            putfield org.springframework.transaction.reactive.TransactionContext.actualTransactionActive:Z
         1: .line 125
            return
        end local 1 // boolean actualTransactionActive
        end local 0 // org.springframework.transaction.reactive.TransactionContext this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0    2     0                     this  Lorg/springframework/transaction/reactive/TransactionContext;
            0    2     1  actualTransactionActive  Z
    MethodParameters:
                         Name  Flags
      actualTransactionActive  

  public boolean isActualTransactionActive();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.transaction.reactive.TransactionContext this
         0: .line 128
            aload 0 /* this */
            getfield org.springframework.transaction.reactive.TransactionContext.actualTransactionActive:Z
            ireturn
        end local 0 // org.springframework.transaction.reactive.TransactionContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/transaction/reactive/TransactionContext;

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.springframework.transaction.reactive.TransactionContext this
         0: .line 133
            aload 0 /* this */
            aconst_null
            putfield org.springframework.transaction.reactive.TransactionContext.synchronizations:Ljava/util/Set;
         1: .line 134
            aload 0 /* this */
            aconst_null
            putfield org.springframework.transaction.reactive.TransactionContext.currentTransactionName:Ljava/lang/String;
         2: .line 135
            aload 0 /* this */
            iconst_0
            putfield org.springframework.transaction.reactive.TransactionContext.currentTransactionReadOnly:Z
         3: .line 136
            aload 0 /* this */
            aconst_null
            putfield org.springframework.transaction.reactive.TransactionContext.currentTransactionIsolationLevel:Ljava/lang/Integer;
         4: .line 137
            aload 0 /* this */
            iconst_0
            putfield org.springframework.transaction.reactive.TransactionContext.actualTransactionActive:Z
         5: .line 138
            return
        end local 0 // org.springframework.transaction.reactive.TransactionContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/springframework/transaction/reactive/TransactionContext;
}
SourceFile: "TransactionContext.java"