public class org.springframework.transaction.reactive.GenericReactiveTransaction implements org.springframework.transaction.ReactiveTransaction
minor version: 0
major version: 59
flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
this_class: org.springframework.transaction.reactive.GenericReactiveTransaction
super_class: java.lang.Object
{
private final java.lang.Object transaction;
descriptor: Ljava/lang/Object;
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
RuntimeVisibleAnnotations:
org.springframework.lang.Nullable()
private final boolean newTransaction;
descriptor: Z
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
private final boolean newSynchronization;
descriptor: Z
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
private final boolean readOnly;
descriptor: Z
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
private final boolean debug;
descriptor: Z
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
private final java.lang.Object suspendedResources;
descriptor: Ljava/lang/Object;
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
RuntimeVisibleAnnotations:
org.springframework.lang.Nullable()
private boolean rollbackOnly;
descriptor: Z
flags: (0x0002) ACC_PRIVATE
private boolean completed;
descriptor: Z
flags: (0x0002) ACC_PRIVATE
public void <init>(java.lang.Object, boolean, boolean, boolean, boolean, java.lang.Object);
descriptor: (Ljava/lang/Object;ZZZZLjava/lang/Object;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=7, args_size=7
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 start local 6 0: aload 0
invokespecial java.lang.Object.<init>:()V
1: aload 0
iconst_0
putfield org.springframework.transaction.reactive.GenericReactiveTransaction.rollbackOnly:Z
2: aload 0
iconst_0
putfield org.springframework.transaction.reactive.GenericReactiveTransaction.completed:Z
3: aload 0
aload 1
putfield org.springframework.transaction.reactive.GenericReactiveTransaction.transaction:Ljava/lang/Object;
4: aload 0
iload 2
putfield org.springframework.transaction.reactive.GenericReactiveTransaction.newTransaction:Z
5: aload 0
iload 3
putfield org.springframework.transaction.reactive.GenericReactiveTransaction.newSynchronization:Z
6: aload 0
iload 4
putfield org.springframework.transaction.reactive.GenericReactiveTransaction.readOnly:Z
7: aload 0
iload 5
putfield org.springframework.transaction.reactive.GenericReactiveTransaction.debug:Z
8: aload 0
aload 6
putfield org.springframework.transaction.reactive.GenericReactiveTransaction.suspendedResources:Ljava/lang/Object;
9: return
end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 10 0 this Lorg/springframework/transaction/reactive/GenericReactiveTransaction;
0 10 1 transaction Ljava/lang/Object;
0 10 2 newTransaction Z
0 10 3 newSynchronization Z
0 10 4 readOnly Z
0 10 5 debug Z
0 10 6 suspendedResources Ljava/lang/Object;
RuntimeVisibleParameterAnnotations:
0:
org.springframework.lang.Nullable()
1:
2:
3:
4:
5:
org.springframework.lang.Nullable()
MethodParameters:
Name Flags
transaction
newTransaction
newSynchronization
readOnly
debug
suspendedResources
public java.lang.Object getTransaction();
descriptor: ()Ljava/lang/Object;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=1, args_size=1
start local 0 0: aload 0
getfield org.springframework.transaction.reactive.GenericReactiveTransaction.transaction:Ljava/lang/Object;
ifnull 1
iconst_1
goto 2
StackMap locals:
StackMap stack:
1: iconst_0
StackMap locals:
StackMap stack: int
2: ldc "No transaction active"
invokestatic org.springframework.util.Assert.state:(ZLjava/lang/String;)V
3: aload 0
getfield org.springframework.transaction.reactive.GenericReactiveTransaction.transaction:Ljava/lang/Object;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lorg/springframework/transaction/reactive/GenericReactiveTransaction;
public boolean hasTransaction();
descriptor: ()Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.springframework.transaction.reactive.GenericReactiveTransaction.transaction:Ljava/lang/Object;
ifnull 1
iconst_1
ireturn
StackMap locals:
StackMap stack:
1: iconst_0
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/springframework/transaction/reactive/GenericReactiveTransaction;
public boolean isNewTransaction();
descriptor: ()Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
invokevirtual org.springframework.transaction.reactive.GenericReactiveTransaction.hasTransaction:()Z
ifeq 1
aload 0
getfield org.springframework.transaction.reactive.GenericReactiveTransaction.newTransaction:Z
ifeq 1
iconst_1
ireturn
StackMap locals:
StackMap stack:
1: iconst_0
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/springframework/transaction/reactive/GenericReactiveTransaction;
public boolean isNewSynchronization();
descriptor: ()Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.springframework.transaction.reactive.GenericReactiveTransaction.newSynchronization:Z
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/springframework/transaction/reactive/GenericReactiveTransaction;
public boolean isReadOnly();
descriptor: ()Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.springframework.transaction.reactive.GenericReactiveTransaction.readOnly:Z
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/springframework/transaction/reactive/GenericReactiveTransaction;
public boolean isDebug();
descriptor: ()Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.springframework.transaction.reactive.GenericReactiveTransaction.debug:Z
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/springframework/transaction/reactive/GenericReactiveTransaction;
public java.lang.Object getSuspendedResources();
descriptor: ()Ljava/lang/Object;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.springframework.transaction.reactive.GenericReactiveTransaction.suspendedResources:Ljava/lang/Object;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/springframework/transaction/reactive/GenericReactiveTransaction;
RuntimeVisibleAnnotations:
org.springframework.lang.Nullable()
public void setRollbackOnly();
descriptor: ()V
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=1, args_size=1
start local 0 0: aload 0
iconst_1
putfield org.springframework.transaction.reactive.GenericReactiveTransaction.rollbackOnly:Z
1: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/springframework/transaction/reactive/GenericReactiveTransaction;
public boolean isRollbackOnly();
descriptor: ()Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.springframework.transaction.reactive.GenericReactiveTransaction.rollbackOnly:Z
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/springframework/transaction/reactive/GenericReactiveTransaction;
public void setCompleted();
descriptor: ()V
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=1, args_size=1
start local 0 0: aload 0
iconst_1
putfield org.springframework.transaction.reactive.GenericReactiveTransaction.completed:Z
1: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/springframework/transaction/reactive/GenericReactiveTransaction;
public boolean isCompleted();
descriptor: ()Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.springframework.transaction.reactive.GenericReactiveTransaction.completed:Z
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/springframework/transaction/reactive/GenericReactiveTransaction;
}
SourceFile: "GenericReactiveTransaction.java"