public class org.springframework.web.cors.UrlBasedCorsConfigurationSource implements org.springframework.web.cors.CorsConfigurationSource
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.web.cors.UrlBasedCorsConfigurationSource
  super_class: java.lang.Object
{
  private static org.springframework.util.PathMatcher defaultPathMatcher;
    descriptor: Lorg/springframework/util/PathMatcher;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  private final org.springframework.web.util.pattern.PathPatternParser patternParser;
    descriptor: Lorg/springframework/web/util/pattern/PathPatternParser;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private org.springframework.web.util.UrlPathHelper urlPathHelper;
    descriptor: Lorg/springframework/web/util/UrlPathHelper;
    flags: (0x0002) ACC_PRIVATE

  private org.springframework.util.PathMatcher pathMatcher;
    descriptor: Lorg/springframework/util/PathMatcher;
    flags: (0x0002) ACC_PRIVATE

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

  private boolean allowInitLookupPath;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private final java.util.Map<org.springframework.web.util.pattern.PathPattern, org.springframework.web.cors.CorsConfiguration> corsConfigurations;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<Lorg/springframework/web/util/pattern/PathPattern;Lorg/springframework/web/cors/CorsConfiguration;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 56
            new org.springframework.util.AntPathMatcher
            dup
            invokespecial org.springframework.util.AntPathMatcher.<init>:()V
            putstatic org.springframework.web.cors.UrlBasedCorsConfigurationSource.defaultPathMatcher:Lorg/springframework/util/PathMatcher;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
         0: .line 77
            aload 0 /* this */
            getstatic org.springframework.web.util.pattern.PathPatternParser.defaultInstance:Lorg/springframework/web/util/pattern/PathPatternParser;
            invokespecial org.springframework.web.cors.UrlBasedCorsConfigurationSource.<init>:(Lorg/springframework/web/util/pattern/PathPatternParser;)V
         1: .line 78
            return
        end local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/springframework/web/cors/UrlBasedCorsConfigurationSource;

  public void <init>(org.springframework.web.util.pattern.PathPatternParser);
    descriptor: (Lorg/springframework/web/util/pattern/PathPatternParser;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
        start local 1 // org.springframework.web.util.pattern.PathPatternParser parser
         0: .line 85
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 61
            aload 0 /* this */
            getstatic org.springframework.web.util.UrlPathHelper.defaultInstance:Lorg/springframework/web/util/UrlPathHelper;
            putfield org.springframework.web.cors.UrlBasedCorsConfigurationSource.urlPathHelper:Lorg/springframework/web/util/UrlPathHelper;
         2: .line 63
            aload 0 /* this */
            getstatic org.springframework.web.cors.UrlBasedCorsConfigurationSource.defaultPathMatcher:Lorg/springframework/util/PathMatcher;
            putfield org.springframework.web.cors.UrlBasedCorsConfigurationSource.pathMatcher:Lorg/springframework/util/PathMatcher;
         3: .line 68
            aload 0 /* this */
            iconst_1
            putfield org.springframework.web.cors.UrlBasedCorsConfigurationSource.allowInitLookupPath:Z
         4: .line 70
            aload 0 /* this */
            new java.util.LinkedHashMap
            dup
            invokespecial java.util.LinkedHashMap.<init>:()V
            putfield org.springframework.web.cors.UrlBasedCorsConfigurationSource.corsConfigurations:Ljava/util/Map;
         5: .line 86
            aload 1 /* parser */
            ldc "PathPatternParser must not be null"
            invokestatic org.springframework.util.Assert.notNull:(Ljava/lang/Object;Ljava/lang/String;)V
         6: .line 87
            aload 0 /* this */
            aload 1 /* parser */
            putfield org.springframework.web.cors.UrlBasedCorsConfigurationSource.patternParser:Lorg/springframework/web/util/pattern/PathPatternParser;
         7: .line 88
            return
        end local 1 // org.springframework.web.util.pattern.PathPatternParser parser
        end local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lorg/springframework/web/cors/UrlBasedCorsConfigurationSource;
            0    8     1  parser  Lorg/springframework/web/util/pattern/PathPatternParser;
    MethodParameters:
        Name  Flags
      parser  

  public void setAlwaysUseFullPath(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
        start local 1 // boolean alwaysUseFullPath
         0: .line 101
            aload 0 /* this */
            invokevirtual org.springframework.web.cors.UrlBasedCorsConfigurationSource.initUrlPathHelper:()V
         1: .line 102
            aload 0 /* this */
            getfield org.springframework.web.cors.UrlBasedCorsConfigurationSource.urlPathHelper:Lorg/springframework/web/util/UrlPathHelper;
            iload 1 /* alwaysUseFullPath */
            invokevirtual org.springframework.web.util.UrlPathHelper.setAlwaysUseFullPath:(Z)V
         2: .line 103
            return
        end local 1 // boolean alwaysUseFullPath
        end local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    3     0               this  Lorg/springframework/web/cors/UrlBasedCorsConfigurationSource;
            0    3     1  alwaysUseFullPath  Z
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
                   Name  Flags
      alwaysUseFullPath  

  public void setUrlDecode(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
        start local 1 // boolean urlDecode
         0: .line 115
            aload 0 /* this */
            invokevirtual org.springframework.web.cors.UrlBasedCorsConfigurationSource.initUrlPathHelper:()V
         1: .line 116
            aload 0 /* this */
            getfield org.springframework.web.cors.UrlBasedCorsConfigurationSource.urlPathHelper:Lorg/springframework/web/util/UrlPathHelper;
            iload 1 /* urlDecode */
            invokevirtual org.springframework.web.util.UrlPathHelper.setUrlDecode:(Z)V
         2: .line 117
            return
        end local 1 // boolean urlDecode
        end local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/springframework/web/cors/UrlBasedCorsConfigurationSource;
            0    3     1  urlDecode  Z
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
           Name  Flags
      urlDecode  

  public void setRemoveSemicolonContent(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
        start local 1 // boolean removeSemicolonContent
         0: .line 129
            aload 0 /* this */
            invokevirtual org.springframework.web.cors.UrlBasedCorsConfigurationSource.initUrlPathHelper:()V
         1: .line 130
            aload 0 /* this */
            getfield org.springframework.web.cors.UrlBasedCorsConfigurationSource.urlPathHelper:Lorg/springframework/web/util/UrlPathHelper;
            iload 1 /* removeSemicolonContent */
            invokevirtual org.springframework.web.util.UrlPathHelper.setRemoveSemicolonContent:(Z)V
         2: .line 131
            return
        end local 1 // boolean removeSemicolonContent
        end local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0    3     0                    this  Lorg/springframework/web/cors/UrlBasedCorsConfigurationSource;
            0    3     1  removeSemicolonContent  Z
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
                        Name  Flags
      removeSemicolonContent  

  private void initUrlPathHelper();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
         0: .line 134
            aload 0 /* this */
            getfield org.springframework.web.cors.UrlBasedCorsConfigurationSource.urlPathHelper:Lorg/springframework/web/util/UrlPathHelper;
            getstatic org.springframework.web.util.UrlPathHelper.defaultInstance:Lorg/springframework/web/util/UrlPathHelper;
            if_acmpne 2
         1: .line 135
            aload 0 /* this */
            new org.springframework.web.util.UrlPathHelper
            dup
            invokespecial org.springframework.web.util.UrlPathHelper.<init>:()V
            putfield org.springframework.web.cors.UrlBasedCorsConfigurationSource.urlPathHelper:Lorg/springframework/web/util/UrlPathHelper;
         2: .line 137
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/springframework/web/cors/UrlBasedCorsConfigurationSource;

  public void setUrlPathHelper(org.springframework.web.util.UrlPathHelper);
    descriptor: (Lorg/springframework/web/util/UrlPathHelper;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
        start local 1 // org.springframework.web.util.UrlPathHelper urlPathHelper
         0: .line 147
            aload 1 /* urlPathHelper */
            ldc "UrlPathHelper must not be null"
            invokestatic org.springframework.util.Assert.notNull:(Ljava/lang/Object;Ljava/lang/String;)V
         1: .line 148
            aload 0 /* this */
            aload 1 /* urlPathHelper */
            putfield org.springframework.web.cors.UrlBasedCorsConfigurationSource.urlPathHelper:Lorg/springframework/web/util/UrlPathHelper;
         2: .line 149
            return
        end local 1 // org.springframework.web.util.UrlPathHelper urlPathHelper
        end local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lorg/springframework/web/cors/UrlBasedCorsConfigurationSource;
            0    3     1  urlPathHelper  Lorg/springframework/web/util/UrlPathHelper;
    MethodParameters:
               Name  Flags
      urlPathHelper  

  public void setAllowInitLookupPath(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
        start local 1 // boolean allowInitLookupPath
         0: .line 173
            aload 0 /* this */
            iload 1 /* allowInitLookupPath */
            putfield org.springframework.web.cors.UrlBasedCorsConfigurationSource.allowInitLookupPath:Z
         1: .line 174
            return
        end local 1 // boolean allowInitLookupPath
        end local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    2     0                 this  Lorg/springframework/web/cors/UrlBasedCorsConfigurationSource;
            0    2     1  allowInitLookupPath  Z
    MethodParameters:
                     Name  Flags
      allowInitLookupPath  

  public void setLookupPathAttributeName(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
        start local 1 // java.lang.String name
         0: .line 186
            aload 0 /* this */
            aload 1 /* name */
            putfield org.springframework.web.cors.UrlBasedCorsConfigurationSource.lookupPathAttributeName:Ljava/lang/String;
         1: .line 187
            return
        end local 1 // java.lang.String name
        end local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/springframework/web/cors/UrlBasedCorsConfigurationSource;
            0    2     1  name  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
      Name  Flags
      name  

  public void setPathMatcher(org.springframework.util.PathMatcher);
    descriptor: (Lorg/springframework/util/PathMatcher;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
        start local 1 // org.springframework.util.PathMatcher pathMatcher
         0: .line 200
            aload 0 /* this */
            aload 1 /* pathMatcher */
            putfield org.springframework.web.cors.UrlBasedCorsConfigurationSource.pathMatcher:Lorg/springframework/util/PathMatcher;
         1: .line 201
            return
        end local 1 // org.springframework.util.PathMatcher pathMatcher
        end local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lorg/springframework/web/cors/UrlBasedCorsConfigurationSource;
            0    2     1  pathMatcher  Lorg/springframework/util/PathMatcher;
    MethodParameters:
             Name  Flags
      pathMatcher  

  public void setCorsConfigurations(java.util.Map<java.lang.String, org.springframework.web.cors.CorsConfiguration>);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
        start local 1 // java.util.Map corsConfigurations
         0: .line 214
            aload 0 /* this */
            getfield org.springframework.web.cors.UrlBasedCorsConfigurationSource.corsConfigurations:Ljava/util/Map;
            invokeinterface java.util.Map.clear:()V
         1: .line 215
            aload 1 /* corsConfigurations */
            ifnull 3
         2: .line 216
            aload 1 /* corsConfigurations */
            aload 0 /* this */
            invokedynamic accept(Lorg/springframework/web/cors/UrlBasedCorsConfigurationSource;)Ljava/util/function/BiConsumer;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;Ljava/lang/Object;)V
                  org/springframework/web/cors/UrlBasedCorsConfigurationSource.registerCorsConfiguration(Ljava/lang/String;Lorg/springframework/web/cors/CorsConfiguration;)V (5)
                  (Ljava/lang/String;Lorg/springframework/web/cors/CorsConfiguration;)V
            invokeinterface java.util.Map.forEach:(Ljava/util/function/BiConsumer;)V
         3: .line 218
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.util.Map corsConfigurations
        end local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    4     0                this  Lorg/springframework/web/cors/UrlBasedCorsConfigurationSource;
            0    4     1  corsConfigurations  Ljava/util/Map<Ljava/lang/String;Lorg/springframework/web/cors/CorsConfiguration;>;
    Signature: (Ljava/util/Map<Ljava/lang/String;Lorg/springframework/web/cors/CorsConfiguration;>;)V
    RuntimeVisibleParameterAnnotations: 
      0:
        org.springframework.lang.Nullable()
    MethodParameters:
                    Name  Flags
      corsConfigurations  

  public void registerCorsConfiguration(java.lang.String, org.springframework.web.cors.CorsConfiguration);
    descriptor: (Ljava/lang/String;Lorg/springframework/web/cors/CorsConfiguration;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
        start local 1 // java.lang.String pattern
        start local 2 // org.springframework.web.cors.CorsConfiguration config
         0: .line 228
            aload 0 /* this */
            getfield org.springframework.web.cors.UrlBasedCorsConfigurationSource.corsConfigurations:Ljava/util/Map;
            aload 0 /* this */
            getfield org.springframework.web.cors.UrlBasedCorsConfigurationSource.patternParser:Lorg/springframework/web/util/pattern/PathPatternParser;
            aload 1 /* pattern */
            invokevirtual org.springframework.web.util.pattern.PathPatternParser.parse:(Ljava/lang/String;)Lorg/springframework/web/util/pattern/PathPattern;
            aload 2 /* config */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 229
            return
        end local 2 // org.springframework.web.cors.CorsConfiguration config
        end local 1 // java.lang.String pattern
        end local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/springframework/web/cors/UrlBasedCorsConfigurationSource;
            0    2     1  pattern  Ljava/lang/String;
            0    2     2   config  Lorg/springframework/web/cors/CorsConfiguration;
    MethodParameters:
         Name  Flags
      pattern  
      config   

  public java.util.Map<java.lang.String, org.springframework.web.cors.CorsConfiguration> getCorsConfigurations();
    descriptor: ()Ljava/util/Map;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
         0: .line 235
            aload 0 /* this */
            getfield org.springframework.web.cors.UrlBasedCorsConfigurationSource.corsConfigurations:Ljava/util/Map;
            invokeinterface java.util.Map.size:()I
            invokestatic org.springframework.util.CollectionUtils.newHashMap:(I)Ljava/util/HashMap;
            astore 1 /* result */
        start local 1 // java.util.Map result
         1: .line 236
            aload 0 /* this */
            getfield org.springframework.web.cors.UrlBasedCorsConfigurationSource.corsConfigurations:Ljava/util/Map;
            aload 1 /* result */
            invokedynamic accept(Ljava/util/Map;)Ljava/util/function/BiConsumer;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;Ljava/lang/Object;)V
                  org/springframework/web/cors/UrlBasedCorsConfigurationSource.lambda$1(Ljava/util/Map;Lorg/springframework/web/util/pattern/PathPattern;Lorg/springframework/web/cors/CorsConfiguration;)V (6)
                  (Lorg/springframework/web/util/pattern/PathPattern;Lorg/springframework/web/cors/CorsConfiguration;)V
            invokeinterface java.util.Map.forEach:(Ljava/util/function/BiConsumer;)V
         2: .line 237
            aload 1 /* result */
            invokestatic java.util.Collections.unmodifiableMap:(Ljava/util/Map;)Ljava/util/Map;
            areturn
        end local 1 // java.util.Map result
        end local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/springframework/web/cors/UrlBasedCorsConfigurationSource;
            1    3     1  result  Ljava/util/Map<Ljava/lang/String;Lorg/springframework/web/cors/CorsConfiguration;>;
    Signature: ()Ljava/util/Map<Ljava/lang/String;Lorg/springframework/web/cors/CorsConfiguration;>;

  public org.springframework.web.cors.CorsConfiguration getCorsConfiguration(HttpServletRequest);
    descriptor: (LHttpServletRequest;)Lorg/springframework/web/cors/CorsConfiguration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
         0: .line 243
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tHttpServletRequest cannot be resolved to a type\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/web/cors/UrlBasedCorsConfigurationSource;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()
    MethodParameters:
         Name  Flags
      request  

  java.lang.Object resolvePath(HttpServletRequest);
    descriptor: (LHttpServletRequest;)Ljava/lang/Object;
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
         0: .line 256
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tHttpServletRequest cannot be resolved to a type\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/web/cors/UrlBasedCorsConfigurationSource;
    MethodParameters:
         Name  Flags
      request  

  private boolean match(java.lang.Object, boolean, org.springframework.web.util.pattern.PathPattern);
    descriptor: (Ljava/lang/Object;ZLorg/springframework/web/util/pattern/PathPattern;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
        start local 1 // java.lang.Object path
        start local 2 // boolean isPathContainer
        start local 3 // org.springframework.web.util.pattern.PathPattern pattern
         0: .line 270
            iload 2 /* isPathContainer */
            ifeq 2
         1: .line 271
            aload 3 /* pattern */
            aload 1 /* path */
            checkcast org.springframework.http.server.PathContainer
            invokevirtual org.springframework.web.util.pattern.PathPattern.matches:(Lorg/springframework/http/server/PathContainer;)Z
            goto 3
         2: .line 272
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.springframework.web.cors.UrlBasedCorsConfigurationSource.pathMatcher:Lorg/springframework/util/PathMatcher;
            aload 3 /* pattern */
            invokevirtual org.springframework.web.util.pattern.PathPattern.getPatternString:()Ljava/lang/String;
            aload 1 /* path */
            checkcast java.lang.String
            invokeinterface org.springframework.util.PathMatcher.match:(Ljava/lang/String;Ljava/lang/String;)Z
         3: .line 270
      StackMap locals:
      StackMap stack: int
            ireturn
        end local 3 // org.springframework.web.util.pattern.PathPattern pattern
        end local 2 // boolean isPathContainer
        end local 1 // java.lang.Object path
        end local 0 // org.springframework.web.cors.UrlBasedCorsConfigurationSource this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    4     0             this  Lorg/springframework/web/cors/UrlBasedCorsConfigurationSource;
            0    4     1             path  Ljava/lang/Object;
            0    4     2  isPathContainer  Z
            0    4     3          pattern  Lorg/springframework/web/util/pattern/PathPattern;
    MethodParameters:
                 Name  Flags
      path             
      isPathContainer  
      pattern          

  public org.springframework.web.cors.CorsConfiguration getCorsConfiguration(HttpServletRequest);
    descriptor: (LHttpServletRequest;)Lorg/springframework/web/cors/CorsConfiguration;
    flags: (0x1001) ACC_PUBLIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=2, args_size=2
         0: .line 54
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tThe type UrlBasedCorsConfigurationSource must implement the inherited abstract method CorsConfigurationSource.getCorsConfiguration(HttpServletRequest)\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    MethodParameters:
      Name  Flags
            

  private static void lambda$1(java.util.Map, org.springframework.web.util.pattern.PathPattern, org.springframework.web.cors.CorsConfiguration);
    descriptor: (Ljava/util/Map;Lorg/springframework/web/util/pattern/PathPattern;Lorg/springframework/web/cors/CorsConfiguration;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 1 // org.springframework.web.util.pattern.PathPattern pattern
        start local 2 // org.springframework.web.cors.CorsConfiguration config
         0: .line 236
            aload 0
            aload 1 /* pattern */
            invokevirtual org.springframework.web.util.pattern.PathPattern.getPatternString:()Ljava/lang/String;
            aload 2 /* config */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            return
        end local 2 // org.springframework.web.cors.CorsConfiguration config
        end local 1 // org.springframework.web.util.pattern.PathPattern pattern
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     1  pattern  Lorg/springframework/web/util/pattern/PathPattern;
            0    1     2   config  Lorg/springframework/web/cors/CorsConfiguration;
}
SourceFile: "UrlBasedCorsConfigurationSource.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles