public class org.springframework.cache.interceptor.CompositeCacheOperationSource implements org.springframework.cache.interceptor.CacheOperationSource, java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.cache.interceptor.CompositeCacheOperationSource
  super_class: java.lang.Object
{
  private final org.springframework.cache.interceptor.CacheOperationSource[] cacheOperationSources;
    descriptor: [Lorg/springframework/cache/interceptor/CacheOperationSource;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(org.springframework.cache.interceptor.CacheOperationSource[]);
    descriptor: ([Lorg/springframework/cache/interceptor/CacheOperationSource;)V
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.cache.interceptor.CompositeCacheOperationSource this
        start local 1 // org.springframework.cache.interceptor.CacheOperationSource[] cacheOperationSources
         0: .line 44
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 45
            aload 1 /* cacheOperationSources */
            ldc "cacheOperationSources array must not be empty"
            invokestatic org.springframework.util.Assert.notEmpty:([Ljava/lang/Object;Ljava/lang/String;)V
         2: .line 46
            aload 0 /* this */
            aload 1 /* cacheOperationSources */
            putfield org.springframework.cache.interceptor.CompositeCacheOperationSource.cacheOperationSources:[Lorg/springframework/cache/interceptor/CacheOperationSource;
         3: .line 47
            return
        end local 1 // org.springframework.cache.interceptor.CacheOperationSource[] cacheOperationSources
        end local 0 // org.springframework.cache.interceptor.CompositeCacheOperationSource this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    4     0                   this  Lorg/springframework/cache/interceptor/CompositeCacheOperationSource;
            0    4     1  cacheOperationSources  [Lorg/springframework/cache/interceptor/CacheOperationSource;
    MethodParameters:
                       Name  Flags
      cacheOperationSources  

  public final org.springframework.cache.interceptor.CacheOperationSource[] getCacheOperationSources();
    descriptor: ()[Lorg/springframework/cache/interceptor/CacheOperationSource;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.cache.interceptor.CompositeCacheOperationSource this
         0: .line 54
            aload 0 /* this */
            getfield org.springframework.cache.interceptor.CompositeCacheOperationSource.cacheOperationSources:[Lorg/springframework/cache/interceptor/CacheOperationSource;
            areturn
        end local 0 // org.springframework.cache.interceptor.CompositeCacheOperationSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/cache/interceptor/CompositeCacheOperationSource;

  public java.util.Collection<org.springframework.cache.interceptor.CacheOperation> getCacheOperations(java.lang.reflect.Method, java.lang.Class<?>);
    descriptor: (Ljava/lang/reflect/Method;Ljava/lang/Class;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=9, args_size=3
        start local 0 // org.springframework.cache.interceptor.CompositeCacheOperationSource this
        start local 1 // java.lang.reflect.Method method
        start local 2 // java.lang.Class targetClass
         0: .line 60
            aconst_null
            astore 3 /* ops */
        start local 3 // java.util.Collection ops
         1: .line 62
            aload 0 /* this */
            getfield org.springframework.cache.interceptor.CompositeCacheOperationSource.cacheOperationSources:[Lorg/springframework/cache/interceptor/CacheOperationSource;
            dup
            astore 7
            arraylength
            istore 6
            iconst_0
            istore 5
            goto 9
      StackMap locals: org.springframework.cache.interceptor.CompositeCacheOperationSource java.lang.reflect.Method java.lang.Class java.util.Collection top int int org.springframework.cache.interceptor.CacheOperationSource[]
      StackMap stack:
         2: aload 7
            iload 5
            aaload
            astore 4 /* source */
        start local 4 // org.springframework.cache.interceptor.CacheOperationSource source
         3: .line 63
            aload 4 /* source */
            aload 1 /* method */
            aload 2 /* targetClass */
            invokeinterface org.springframework.cache.interceptor.CacheOperationSource.getCacheOperations:(Ljava/lang/reflect/Method;Ljava/lang/Class;)Ljava/util/Collection;
            astore 8 /* cacheOperations */
        start local 8 // java.util.Collection cacheOperations
         4: .line 64
            aload 8 /* cacheOperations */
            ifnull 8
         5: .line 65
            aload 3 /* ops */
            ifnonnull 7
         6: .line 66
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 3 /* ops */
         7: .line 69
      StackMap locals: org.springframework.cache.interceptor.CompositeCacheOperationSource java.lang.reflect.Method java.lang.Class java.util.Collection org.springframework.cache.interceptor.CacheOperationSource int int org.springframework.cache.interceptor.CacheOperationSource[] java.util.Collection
      StackMap stack:
            aload 3 /* ops */
            aload 8 /* cacheOperations */
            invokeinterface java.util.Collection.addAll:(Ljava/util/Collection;)Z
            pop
        end local 8 // java.util.Collection cacheOperations
        end local 4 // org.springframework.cache.interceptor.CacheOperationSource source
         8: .line 62
      StackMap locals: org.springframework.cache.interceptor.CompositeCacheOperationSource java.lang.reflect.Method java.lang.Class java.util.Collection top int int org.springframework.cache.interceptor.CacheOperationSource[]
      StackMap stack:
            iinc 5 1
      StackMap locals:
      StackMap stack:
         9: iload 5
            iload 6
            if_icmplt 2
        10: .line 72
            aload 3 /* ops */
            areturn
        end local 3 // java.util.Collection ops
        end local 2 // java.lang.Class targetClass
        end local 1 // java.lang.reflect.Method method
        end local 0 // org.springframework.cache.interceptor.CompositeCacheOperationSource this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   11     0             this  Lorg/springframework/cache/interceptor/CompositeCacheOperationSource;
            0   11     1           method  Ljava/lang/reflect/Method;
            0   11     2      targetClass  Ljava/lang/Class<*>;
            1   11     3              ops  Ljava/util/Collection<Lorg/springframework/cache/interceptor/CacheOperation;>;
            3    8     4           source  Lorg/springframework/cache/interceptor/CacheOperationSource;
            4    8     8  cacheOperations  Ljava/util/Collection<Lorg/springframework/cache/interceptor/CacheOperation;>;
    Signature: (Ljava/lang/reflect/Method;Ljava/lang/Class<*>;)Ljava/util/Collection<Lorg/springframework/cache/interceptor/CacheOperation;>;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()
    RuntimeVisibleParameterAnnotations: 
      0:
      1:
        org.springframework.lang.Nullable()
    MethodParameters:
             Name  Flags
      method       
      targetClass  
}
SourceFile: "CompositeCacheOperationSource.java"