public class org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration
  super_class: java.lang.Object
{
  private final java.lang.String[] pathPatterns;
    descriptor: [Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.List<java.lang.String> locationValues;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Ljava/lang/String;>;

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

  private org.springframework.http.CacheControl cacheControl;
    descriptor: Lorg/springframework/http/CacheControl;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  private org.springframework.web.servlet.config.annotation.ResourceChainRegistration resourceChainRegistration;
    descriptor: Lorg/springframework/web/servlet/config/annotation/ResourceChainRegistration;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  public void <init>(java.lang.String[]);
    descriptor: ([Ljava/lang/String;)V
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration this
        start local 1 // java.lang.String[] pathPatterns
         0: .line 58
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 42
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration.locationValues:Ljava/util/List;
         2: .line 59
            aload 1 /* pathPatterns */
            ldc "At least one path pattern is required for resource handling."
            invokestatic org.springframework.util.Assert.notEmpty:([Ljava/lang/Object;Ljava/lang/String;)V
         3: .line 60
            aload 0 /* this */
            aload 1 /* pathPatterns */
            putfield org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration.pathPatterns:[Ljava/lang/String;
         4: .line 61
            return
        end local 1 // java.lang.String[] pathPatterns
        end local 0 // org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    5     0          this  Lorg/springframework/web/servlet/config/annotation/ResourceHandlerRegistration;
            0    5     1  pathPatterns  [Ljava/lang/String;
    MethodParameters:
              Name  Flags
      pathPatterns  

  public org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration addResourceLocations(java.lang.String[]);
    descriptor: ([Ljava/lang/String;)Lorg/springframework/web/servlet/config/annotation/ResourceHandlerRegistration;
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration this
        start local 1 // java.lang.String[] resourceLocations
         0: .line 83
            aload 0 /* this */
            getfield org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration.locationValues:Ljava/util/List;
            aload 1 /* resourceLocations */
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokeinterface java.util.List.addAll:(Ljava/util/Collection;)Z
            pop
         1: .line 84
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String[] resourceLocations
        end local 0 // org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    2     0               this  Lorg/springframework/web/servlet/config/annotation/ResourceHandlerRegistration;
            0    2     1  resourceLocations  [Ljava/lang/String;
    MethodParameters:
                   Name  Flags
      resourceLocations  

  public org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration setCachePeriod(java.lang.Integer);
    descriptor: (Ljava/lang/Integer;)Lorg/springframework/web/servlet/config/annotation/ResourceHandlerRegistration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration this
        start local 1 // java.lang.Integer cachePeriod
         0: .line 95
            aload 0 /* this */
            aload 1 /* cachePeriod */
            putfield org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration.cachePeriod:Ljava/lang/Integer;
         1: .line 96
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Integer cachePeriod
        end local 0 // org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lorg/springframework/web/servlet/config/annotation/ResourceHandlerRegistration;
            0    2     1  cachePeriod  Ljava/lang/Integer;
    MethodParameters:
             Name  Flags
      cachePeriod  

  public org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration setCacheControl(org.springframework.http.CacheControl);
    descriptor: (Lorg/springframework/http/CacheControl;)Lorg/springframework/web/servlet/config/annotation/ResourceHandlerRegistration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration this
        start local 1 // org.springframework.http.CacheControl cacheControl
         0: .line 108
            aload 0 /* this */
            aload 1 /* cacheControl */
            putfield org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration.cacheControl:Lorg/springframework/http/CacheControl;
         1: .line 109
            aload 0 /* this */
            areturn
        end local 1 // org.springframework.http.CacheControl cacheControl
        end local 0 // org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lorg/springframework/web/servlet/config/annotation/ResourceHandlerRegistration;
            0    2     1  cacheControl  Lorg/springframework/http/CacheControl;
    MethodParameters:
              Name  Flags
      cacheControl  

  public org.springframework.web.servlet.config.annotation.ResourceChainRegistration resourceChain(boolean);
    descriptor: (Z)Lorg/springframework/web/servlet/config/annotation/ResourceChainRegistration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration this
        start local 1 // boolean cacheResources
         0: .line 125
            aload 0 /* this */
            new org.springframework.web.servlet.config.annotation.ResourceChainRegistration
            dup
            iload 1 /* cacheResources */
            invokespecial org.springframework.web.servlet.config.annotation.ResourceChainRegistration.<init>:(Z)V
            putfield org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration.resourceChainRegistration:Lorg/springframework/web/servlet/config/annotation/ResourceChainRegistration;
         1: .line 126
            aload 0 /* this */
            getfield org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration.resourceChainRegistration:Lorg/springframework/web/servlet/config/annotation/ResourceChainRegistration;
            areturn
        end local 1 // boolean cacheResources
        end local 0 // org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lorg/springframework/web/servlet/config/annotation/ResourceHandlerRegistration;
            0    2     1  cacheResources  Z
    MethodParameters:
                Name  Flags
      cacheResources  

  public org.springframework.web.servlet.config.annotation.ResourceChainRegistration resourceChain(boolean, org.springframework.cache.Cache);
    descriptor: (ZLorg/springframework/cache/Cache;)Lorg/springframework/web/servlet/config/annotation/ResourceChainRegistration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration this
        start local 1 // boolean cacheResources
        start local 2 // org.springframework.cache.Cache cache
         0: .line 147
            aload 0 /* this */
            new org.springframework.web.servlet.config.annotation.ResourceChainRegistration
            dup
            iload 1 /* cacheResources */
            aload 2 /* cache */
            invokespecial org.springframework.web.servlet.config.annotation.ResourceChainRegistration.<init>:(ZLorg/springframework/cache/Cache;)V
            putfield org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration.resourceChainRegistration:Lorg/springframework/web/servlet/config/annotation/ResourceChainRegistration;
         1: .line 148
            aload 0 /* this */
            getfield org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration.resourceChainRegistration:Lorg/springframework/web/servlet/config/annotation/ResourceChainRegistration;
            areturn
        end local 2 // org.springframework.cache.Cache cache
        end local 1 // boolean cacheResources
        end local 0 // org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lorg/springframework/web/servlet/config/annotation/ResourceHandlerRegistration;
            0    2     1  cacheResources  Z
            0    2     2           cache  Lorg/springframework/cache/Cache;
    MethodParameters:
                Name  Flags
      cacheResources  
      cache           

  protected java.lang.String[] getPathPatterns();
    descriptor: ()[Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration this
         0: .line 156
            aload 0 /* this */
            getfield org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration.pathPatterns:[Ljava/lang/String;
            areturn
        end local 0 // org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/web/servlet/config/annotation/ResourceHandlerRegistration;

  protected org.springframework.web.servlet.resource.ResourceHttpRequestHandler getRequestHandler();
    descriptor: ()Lorg/springframework/web/servlet/resource/ResourceHttpRequestHandler;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration this
         0: .line 163
            new org.springframework.web.servlet.resource.ResourceHttpRequestHandler
            dup
            invokespecial org.springframework.web.servlet.resource.ResourceHttpRequestHandler.<init>:()V
            astore 1 /* handler */
        start local 1 // org.springframework.web.servlet.resource.ResourceHttpRequestHandler handler
         1: .line 164
            aload 0 /* this */
            getfield org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration.resourceChainRegistration:Lorg/springframework/web/servlet/config/annotation/ResourceChainRegistration;
            ifnull 4
         2: .line 165
            aload 1 /* handler */
            aload 0 /* this */
            getfield org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration.resourceChainRegistration:Lorg/springframework/web/servlet/config/annotation/ResourceChainRegistration;
            invokevirtual org.springframework.web.servlet.config.annotation.ResourceChainRegistration.getResourceResolvers:()Ljava/util/List;
            invokevirtual org.springframework.web.servlet.resource.ResourceHttpRequestHandler.setResourceResolvers:(Ljava/util/List;)V
         3: .line 166
            aload 1 /* handler */
            aload 0 /* this */
            getfield org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration.resourceChainRegistration:Lorg/springframework/web/servlet/config/annotation/ResourceChainRegistration;
            invokevirtual org.springframework.web.servlet.config.annotation.ResourceChainRegistration.getResourceTransformers:()Ljava/util/List;
            invokevirtual org.springframework.web.servlet.resource.ResourceHttpRequestHandler.setResourceTransformers:(Ljava/util/List;)V
         4: .line 168
      StackMap locals: org.springframework.web.servlet.resource.ResourceHttpRequestHandler
      StackMap stack:
            aload 1 /* handler */
            aload 0 /* this */
            getfield org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration.locationValues:Ljava/util/List;
            invokevirtual org.springframework.web.servlet.resource.ResourceHttpRequestHandler.setLocationValues:(Ljava/util/List;)V
         5: .line 169
            aload 0 /* this */
            getfield org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration.cacheControl:Lorg/springframework/http/CacheControl;
            ifnull 8
         6: .line 170
            aload 1 /* handler */
            aload 0 /* this */
            getfield org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration.cacheControl:Lorg/springframework/http/CacheControl;
            invokevirtual org.springframework.web.servlet.resource.ResourceHttpRequestHandler.setCacheControl:(Lorg/springframework/http/CacheControl;)V
         7: .line 171
            goto 10
         8: .line 172
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration.cachePeriod:Ljava/lang/Integer;
            ifnull 10
         9: .line 173
            aload 1 /* handler */
            aload 0 /* this */
            getfield org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration.cachePeriod:Ljava/lang/Integer;
            invokevirtual java.lang.Integer.intValue:()I
            invokevirtual org.springframework.web.servlet.resource.ResourceHttpRequestHandler.setCacheSeconds:(I)V
        10: .line 175
      StackMap locals:
      StackMap stack:
            aload 1 /* handler */
            areturn
        end local 1 // org.springframework.web.servlet.resource.ResourceHttpRequestHandler handler
        end local 0 // org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   11     0     this  Lorg/springframework/web/servlet/config/annotation/ResourceHandlerRegistration;
            1   11     1  handler  Lorg/springframework/web/servlet/resource/ResourceHttpRequestHandler;
}
SourceFile: "ResourceHandlerRegistration.java"