public class org.springframework.cache.jcache.JCacheManagerFactoryBean implements org.springframework.beans.factory.FactoryBean<javax.cache.CacheManager>, org.springframework.beans.factory.BeanClassLoaderAware, org.springframework.beans.factory.InitializingBean, org.springframework.beans.factory.DisposableBean
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.cache.jcache.JCacheManagerFactoryBean
  super_class: java.lang.Object
{
  private java.net.URI cacheManagerUri;
    descriptor: Ljava/net/URI;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  private java.util.Properties cacheManagerProperties;
    descriptor: Ljava/util/Properties;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  private java.lang.ClassLoader beanClassLoader;
    descriptor: Ljava/lang/ClassLoader;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  private javax.cache.CacheManager cacheManager;
    descriptor: Ljavax/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.jcache.JCacheManagerFactoryBean this
         0: .line 42
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.springframework.cache.jcache.JCacheManagerFactoryBean this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/cache/jcache/JCacheManagerFactoryBean;

  public void setCacheManagerUri(java.net.URI);
    descriptor: (Ljava/net/URI;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.cache.jcache.JCacheManagerFactoryBean this
        start local 1 // java.net.URI cacheManagerUri
         0: .line 63
            aload 0 /* this */
            aload 1 /* cacheManagerUri */
            putfield org.springframework.cache.jcache.JCacheManagerFactoryBean.cacheManagerUri:Ljava/net/URI;
         1: .line 64
            return
        end local 1 // java.net.URI cacheManagerUri
        end local 0 // org.springframework.cache.jcache.JCacheManagerFactoryBean this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lorg/springframework/cache/jcache/JCacheManagerFactoryBean;
            0    2     1  cacheManagerUri  Ljava/net/URI;
    RuntimeVisibleParameterAnnotations: 
      0:
        org.springframework.lang.Nullable()
    MethodParameters:
                 Name  Flags
      cacheManagerUri  

  public void setCacheManagerProperties(java.util.Properties);
    descriptor: (Ljava/util/Properties;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.cache.jcache.JCacheManagerFactoryBean this
        start local 1 // java.util.Properties cacheManagerProperties
         0: .line 72
            aload 0 /* this */
            aload 1 /* cacheManagerProperties */
            putfield org.springframework.cache.jcache.JCacheManagerFactoryBean.cacheManagerProperties:Ljava/util/Properties;
         1: .line 73
            return
        end local 1 // java.util.Properties cacheManagerProperties
        end local 0 // org.springframework.cache.jcache.JCacheManagerFactoryBean this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0    2     0                    this  Lorg/springframework/cache/jcache/JCacheManagerFactoryBean;
            0    2     1  cacheManagerProperties  Ljava/util/Properties;
    RuntimeVisibleParameterAnnotations: 
      0:
        org.springframework.lang.Nullable()
    MethodParameters:
                        Name  Flags
      cacheManagerProperties  

  public void setBeanClassLoader(java.lang.ClassLoader);
    descriptor: (Ljava/lang/ClassLoader;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.cache.jcache.JCacheManagerFactoryBean this
        start local 1 // java.lang.ClassLoader classLoader
         0: .line 77
            aload 0 /* this */
            aload 1 /* classLoader */
            putfield org.springframework.cache.jcache.JCacheManagerFactoryBean.beanClassLoader:Ljava/lang/ClassLoader;
         1: .line 78
            return
        end local 1 // java.lang.ClassLoader classLoader
        end local 0 // org.springframework.cache.jcache.JCacheManagerFactoryBean this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lorg/springframework/cache/jcache/JCacheManagerFactoryBean;
            0    2     1  classLoader  Ljava/lang/ClassLoader;
    MethodParameters:
             Name  Flags
      classLoader  

  public void afterPropertiesSet();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.springframework.cache.jcache.JCacheManagerFactoryBean this
         0: .line 82
            aload 0 /* this */
            invokestatic javax.cache.Caching.getCachingProvider:()Ljavax/cache/spi/CachingProvider;
         1: .line 83
            aload 0 /* this */
            getfield org.springframework.cache.jcache.JCacheManagerFactoryBean.cacheManagerUri:Ljava/net/URI;
            aload 0 /* this */
            getfield org.springframework.cache.jcache.JCacheManagerFactoryBean.beanClassLoader:Ljava/lang/ClassLoader;
            aload 0 /* this */
            getfield org.springframework.cache.jcache.JCacheManagerFactoryBean.cacheManagerProperties:Ljava/util/Properties;
         2: .line 82
            invokeinterface javax.cache.spi.CachingProvider.getCacheManager:(Ljava/net/URI;Ljava/lang/ClassLoader;Ljava/util/Properties;)Ljavax/cache/CacheManager;
            putfield org.springframework.cache.jcache.JCacheManagerFactoryBean.cacheManager:Ljavax/cache/CacheManager;
         3: .line 84
            return
        end local 0 // org.springframework.cache.jcache.JCacheManagerFactoryBean this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/springframework/cache/jcache/JCacheManagerFactoryBean;

  public javax.cache.CacheManager getObject();
    descriptor: ()Ljavax/cache/CacheManager;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.cache.jcache.JCacheManagerFactoryBean this
         0: .line 90
            aload 0 /* this */
            getfield org.springframework.cache.jcache.JCacheManagerFactoryBean.cacheManager:Ljavax/cache/CacheManager;
            areturn
        end local 0 // org.springframework.cache.jcache.JCacheManagerFactoryBean this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/cache/jcache/JCacheManagerFactoryBean;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  public java.lang.Class<?> getObjectType();
    descriptor: ()Ljava/lang/Class;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.cache.jcache.JCacheManagerFactoryBean this
         0: .line 95
            aload 0 /* this */
            getfield org.springframework.cache.jcache.JCacheManagerFactoryBean.cacheManager:Ljavax/cache/CacheManager;
            ifnull 1
            aload 0 /* this */
            getfield org.springframework.cache.jcache.JCacheManagerFactoryBean.cacheManager:Ljavax/cache/CacheManager;
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            goto 2
      StackMap locals:
      StackMap stack:
         1: ldc Ljavax/cache/CacheManager;
      StackMap locals:
      StackMap stack: java.lang.Class
         2: areturn
        end local 0 // org.springframework.cache.jcache.JCacheManagerFactoryBean this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/springframework/cache/jcache/JCacheManagerFactoryBean;
    Signature: ()Ljava/lang/Class<*>;

  public boolean isSingleton();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.cache.jcache.JCacheManagerFactoryBean this
         0: .line 100
            iconst_1
            ireturn
        end local 0 // org.springframework.cache.jcache.JCacheManagerFactoryBean this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/cache/jcache/JCacheManagerFactoryBean;

  public void destroy();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.cache.jcache.JCacheManagerFactoryBean this
         0: .line 106
            aload 0 /* this */
            getfield org.springframework.cache.jcache.JCacheManagerFactoryBean.cacheManager:Ljavax/cache/CacheManager;
            ifnull 2
         1: .line 107
            aload 0 /* this */
            getfield org.springframework.cache.jcache.JCacheManagerFactoryBean.cacheManager:Ljavax/cache/CacheManager;
            invokeinterface javax.cache.CacheManager.close:()V
         2: .line 109
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.springframework.cache.jcache.JCacheManagerFactoryBean this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/springframework/cache/jcache/JCacheManagerFactoryBean;

  public java.lang.Object getObject();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.springframework.cache.jcache.JCacheManagerFactoryBean.getObject:()Ljavax/cache/CacheManager;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.Exception
}
Signature: Ljava/lang/Object;Lorg/springframework/beans/factory/FactoryBean<Ljavax/cache/CacheManager;>;Lorg/springframework/beans/factory/BeanClassLoaderAware;Lorg/springframework/beans/factory/InitializingBean;Lorg/springframework/beans/factory/DisposableBean;
SourceFile: "JCacheManagerFactoryBean.java"