public class org.springframework.cache.transaction.TransactionAwareCacheManagerProxy implements org.springframework.cache.CacheManager, org.springframework.beans.factory.InitializingBean
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.cache.transaction.TransactionAwareCacheManagerProxy
  super_class: java.lang.Object
{
  private org.springframework.cache.CacheManager targetCacheManager;
    descriptor: Lorg/springframework/cache/CacheManager;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.cache.transaction.TransactionAwareCacheManagerProxy this
         0: .line 50
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 51
            return
        end local 0 // org.springframework.cache.transaction.TransactionAwareCacheManagerProxy this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/springframework/cache/transaction/TransactionAwareCacheManagerProxy;

  public void <init>(org.springframework.cache.CacheManager);
    descriptor: (Lorg/springframework/cache/CacheManager;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.cache.transaction.TransactionAwareCacheManagerProxy this
        start local 1 // org.springframework.cache.CacheManager targetCacheManager
         0: .line 57
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 58
            aload 1 /* targetCacheManager */
            ldc "Target CacheManager must not be null"
            invokestatic org.springframework.util.Assert.notNull:(Ljava/lang/Object;Ljava/lang/String;)V
         2: .line 59
            aload 0 /* this */
            aload 1 /* targetCacheManager */
            putfield org.springframework.cache.transaction.TransactionAwareCacheManagerProxy.targetCacheManager:Lorg/springframework/cache/CacheManager;
         3: .line 60
            return
        end local 1 // org.springframework.cache.CacheManager targetCacheManager
        end local 0 // org.springframework.cache.transaction.TransactionAwareCacheManagerProxy this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    4     0                this  Lorg/springframework/cache/transaction/TransactionAwareCacheManagerProxy;
            0    4     1  targetCacheManager  Lorg/springframework/cache/CacheManager;
    MethodParameters:
                    Name  Flags
      targetCacheManager  

  public void setTargetCacheManager(org.springframework.cache.CacheManager);
    descriptor: (Lorg/springframework/cache/CacheManager;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.cache.transaction.TransactionAwareCacheManagerProxy this
        start local 1 // org.springframework.cache.CacheManager targetCacheManager
         0: .line 67
            aload 0 /* this */
            aload 1 /* targetCacheManager */
            putfield org.springframework.cache.transaction.TransactionAwareCacheManagerProxy.targetCacheManager:Lorg/springframework/cache/CacheManager;
         1: .line 68
            return
        end local 1 // org.springframework.cache.CacheManager targetCacheManager
        end local 0 // org.springframework.cache.transaction.TransactionAwareCacheManagerProxy this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    2     0                this  Lorg/springframework/cache/transaction/TransactionAwareCacheManagerProxy;
            0    2     1  targetCacheManager  Lorg/springframework/cache/CacheManager;
    MethodParameters:
                    Name  Flags
      targetCacheManager  

  public void afterPropertiesSet();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.springframework.cache.transaction.TransactionAwareCacheManagerProxy this
         0: .line 72
            aload 0 /* this */
            getfield org.springframework.cache.transaction.TransactionAwareCacheManagerProxy.targetCacheManager:Lorg/springframework/cache/CacheManager;
            ifnonnull 2
         1: .line 73
            new java.lang.IllegalArgumentException
            dup
            ldc "Property 'targetCacheManager' is required"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 75
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.springframework.cache.transaction.TransactionAwareCacheManagerProxy this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/springframework/cache/transaction/TransactionAwareCacheManagerProxy;

  public org.springframework.cache.Cache getCache(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/springframework/cache/Cache;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.springframework.cache.transaction.TransactionAwareCacheManagerProxy this
        start local 1 // java.lang.String name
         0: .line 81
            aload 0 /* this */
            getfield org.springframework.cache.transaction.TransactionAwareCacheManagerProxy.targetCacheManager:Lorg/springframework/cache/CacheManager;
            ifnull 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ldc "No target CacheManager set"
            invokestatic org.springframework.util.Assert.state:(ZLjava/lang/String;)V
         3: .line 82
            aload 0 /* this */
            getfield org.springframework.cache.transaction.TransactionAwareCacheManagerProxy.targetCacheManager:Lorg/springframework/cache/CacheManager;
            aload 1 /* name */
            invokeinterface org.springframework.cache.CacheManager.getCache:(Ljava/lang/String;)Lorg/springframework/cache/Cache;
            astore 2 /* targetCache */
        start local 2 // org.springframework.cache.Cache targetCache
         4: .line 83
            aload 2 /* targetCache */
            ifnull 5
            new org.springframework.cache.transaction.TransactionAwareCacheDecorator
            dup
            aload 2 /* targetCache */
            invokespecial org.springframework.cache.transaction.TransactionAwareCacheDecorator.<init>:(Lorg/springframework/cache/Cache;)V
            goto 6
      StackMap locals: org.springframework.cache.Cache
      StackMap stack:
         5: aconst_null
      StackMap locals:
      StackMap stack: org.springframework.cache.transaction.TransactionAwareCacheDecorator
         6: areturn
        end local 2 // org.springframework.cache.Cache targetCache
        end local 1 // java.lang.String name
        end local 0 // org.springframework.cache.transaction.TransactionAwareCacheManagerProxy this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    7     0         this  Lorg/springframework/cache/transaction/TransactionAwareCacheManagerProxy;
            0    7     1         name  Ljava/lang/String;
            4    7     2  targetCache  Lorg/springframework/cache/Cache;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()
    MethodParameters:
      Name  Flags
      name  

  public java.util.Collection<java.lang.String> getCacheNames();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.springframework.cache.transaction.TransactionAwareCacheManagerProxy this
         0: .line 88
            aload 0 /* this */
            getfield org.springframework.cache.transaction.TransactionAwareCacheManagerProxy.targetCacheManager:Lorg/springframework/cache/CacheManager;
            ifnull 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ldc "No target CacheManager set"
            invokestatic org.springframework.util.Assert.state:(ZLjava/lang/String;)V
         3: .line 89
            aload 0 /* this */
            getfield org.springframework.cache.transaction.TransactionAwareCacheManagerProxy.targetCacheManager:Lorg/springframework/cache/CacheManager;
            invokeinterface org.springframework.cache.CacheManager.getCacheNames:()Ljava/util/Collection;
            areturn
        end local 0 // org.springframework.cache.transaction.TransactionAwareCacheManagerProxy this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/springframework/cache/transaction/TransactionAwareCacheManagerProxy;
    Signature: ()Ljava/util/Collection<Ljava/lang/String;>;
}
SourceFile: "TransactionAwareCacheManagerProxy.java"