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

  private final org.springframework.web.cors.CorsConfiguration config;
    descriptor: Lorg/springframework/web/cors/CorsConfiguration;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.springframework.web.servlet.config.annotation.CorsRegistration this
        start local 1 // java.lang.String pathPattern
         0: .line 41
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 42
            aload 0 /* this */
            aload 1 /* pathPattern */
            putfield org.springframework.web.servlet.config.annotation.CorsRegistration.pathPattern:Ljava/lang/String;
         2: .line 44
            aload 0 /* this */
            new org.springframework.web.cors.CorsConfiguration
            dup
            invokespecial org.springframework.web.cors.CorsConfiguration.<init>:()V
            invokevirtual org.springframework.web.cors.CorsConfiguration.applyPermitDefaultValues:()Lorg/springframework/web/cors/CorsConfiguration;
            putfield org.springframework.web.servlet.config.annotation.CorsRegistration.config:Lorg/springframework/web/cors/CorsConfiguration;
         3: .line 45
            return
        end local 1 // java.lang.String pathPattern
        end local 0 // org.springframework.web.servlet.config.annotation.CorsRegistration this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lorg/springframework/web/servlet/config/annotation/CorsRegistration;
            0    4     1  pathPattern  Ljava/lang/String;
    MethodParameters:
             Name  Flags
      pathPattern  

  public org.springframework.web.servlet.config.annotation.CorsRegistration allowedOrigins(java.lang.String[]);
    descriptor: ([Ljava/lang/String;)Lorg/springframework/web/servlet/config/annotation/CorsRegistration;
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.web.servlet.config.annotation.CorsRegistration this
        start local 1 // java.lang.String[] origins
         0: .line 63
            aload 0 /* this */
            getfield org.springframework.web.servlet.config.annotation.CorsRegistration.config:Lorg/springframework/web/cors/CorsConfiguration;
            aload 1 /* origins */
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokevirtual org.springframework.web.cors.CorsConfiguration.setAllowedOrigins:(Ljava/util/List;)V
         1: .line 64
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String[] origins
        end local 0 // org.springframework.web.servlet.config.annotation.CorsRegistration this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/springframework/web/servlet/config/annotation/CorsRegistration;
            0    2     1  origins  [Ljava/lang/String;
    MethodParameters:
         Name  Flags
      origins  

  public org.springframework.web.servlet.config.annotation.CorsRegistration allowedMethods(java.lang.String[]);
    descriptor: ([Ljava/lang/String;)Lorg/springframework/web/servlet/config/annotation/CorsRegistration;
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.web.servlet.config.annotation.CorsRegistration this
        start local 1 // java.lang.String[] methods
         0: .line 75
            aload 0 /* this */
            getfield org.springframework.web.servlet.config.annotation.CorsRegistration.config:Lorg/springframework/web/cors/CorsConfiguration;
            aload 1 /* methods */
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokevirtual org.springframework.web.cors.CorsConfiguration.setAllowedMethods:(Ljava/util/List;)V
         1: .line 76
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String[] methods
        end local 0 // org.springframework.web.servlet.config.annotation.CorsRegistration this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/springframework/web/servlet/config/annotation/CorsRegistration;
            0    2     1  methods  [Ljava/lang/String;
    MethodParameters:
         Name  Flags
      methods  

  public org.springframework.web.servlet.config.annotation.CorsRegistration allowedHeaders(java.lang.String[]);
    descriptor: ([Ljava/lang/String;)Lorg/springframework/web/servlet/config/annotation/CorsRegistration;
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.web.servlet.config.annotation.CorsRegistration this
        start local 1 // java.lang.String[] headers
         0: .line 89
            aload 0 /* this */
            getfield org.springframework.web.servlet.config.annotation.CorsRegistration.config:Lorg/springframework/web/cors/CorsConfiguration;
            aload 1 /* headers */
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokevirtual org.springframework.web.cors.CorsConfiguration.setAllowedHeaders:(Ljava/util/List;)V
         1: .line 90
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String[] headers
        end local 0 // org.springframework.web.servlet.config.annotation.CorsRegistration this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/springframework/web/servlet/config/annotation/CorsRegistration;
            0    2     1  headers  [Ljava/lang/String;
    MethodParameters:
         Name  Flags
      headers  

  public org.springframework.web.servlet.config.annotation.CorsRegistration exposedHeaders(java.lang.String[]);
    descriptor: ([Ljava/lang/String;)Lorg/springframework/web/servlet/config/annotation/CorsRegistration;
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.web.servlet.config.annotation.CorsRegistration this
        start local 1 // java.lang.String[] headers
         0: .line 102
            aload 0 /* this */
            getfield org.springframework.web.servlet.config.annotation.CorsRegistration.config:Lorg/springframework/web/cors/CorsConfiguration;
            aload 1 /* headers */
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokevirtual org.springframework.web.cors.CorsConfiguration.setExposedHeaders:(Ljava/util/List;)V
         1: .line 103
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String[] headers
        end local 0 // org.springframework.web.servlet.config.annotation.CorsRegistration this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/springframework/web/servlet/config/annotation/CorsRegistration;
            0    2     1  headers  [Ljava/lang/String;
    MethodParameters:
         Name  Flags
      headers  

  public org.springframework.web.servlet.config.annotation.CorsRegistration allowCredentials(boolean);
    descriptor: (Z)Lorg/springframework/web/servlet/config/annotation/CorsRegistration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.web.servlet.config.annotation.CorsRegistration this
        start local 1 // boolean allowCredentials
         0: .line 120
            aload 0 /* this */
            getfield org.springframework.web.servlet.config.annotation.CorsRegistration.config:Lorg/springframework/web/cors/CorsConfiguration;
            iload 1 /* allowCredentials */
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual org.springframework.web.cors.CorsConfiguration.setAllowCredentials:(Ljava/lang/Boolean;)V
         1: .line 121
            aload 0 /* this */
            areturn
        end local 1 // boolean allowCredentials
        end local 0 // org.springframework.web.servlet.config.annotation.CorsRegistration this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lorg/springframework/web/servlet/config/annotation/CorsRegistration;
            0    2     1  allowCredentials  Z
    MethodParameters:
                  Name  Flags
      allowCredentials  

  public org.springframework.web.servlet.config.annotation.CorsRegistration maxAge(long);
    descriptor: (J)Lorg/springframework/web/servlet/config/annotation/CorsRegistration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.springframework.web.servlet.config.annotation.CorsRegistration this
        start local 1 // long maxAge
         0: .line 130
            aload 0 /* this */
            getfield org.springframework.web.servlet.config.annotation.CorsRegistration.config:Lorg/springframework/web/cors/CorsConfiguration;
            lload 1 /* maxAge */
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            invokevirtual org.springframework.web.cors.CorsConfiguration.setMaxAge:(Ljava/lang/Long;)V
         1: .line 131
            aload 0 /* this */
            areturn
        end local 1 // long maxAge
        end local 0 // org.springframework.web.servlet.config.annotation.CorsRegistration this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/springframework/web/servlet/config/annotation/CorsRegistration;
            0    2     1  maxAge  J
    MethodParameters:
        Name  Flags
      maxAge  

  protected java.lang.String getPathPattern();
    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.CorsRegistration this
         0: .line 135
            aload 0 /* this */
            getfield org.springframework.web.servlet.config.annotation.CorsRegistration.pathPattern:Ljava/lang/String;
            areturn
        end local 0 // org.springframework.web.servlet.config.annotation.CorsRegistration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/web/servlet/config/annotation/CorsRegistration;

  protected org.springframework.web.cors.CorsConfiguration getCorsConfiguration();
    descriptor: ()Lorg/springframework/web/cors/CorsConfiguration;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.web.servlet.config.annotation.CorsRegistration this
         0: .line 139
            aload 0 /* this */
            getfield org.springframework.web.servlet.config.annotation.CorsRegistration.config:Lorg/springframework/web/cors/CorsConfiguration;
            areturn
        end local 0 // org.springframework.web.servlet.config.annotation.CorsRegistration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/web/servlet/config/annotation/CorsRegistration;
}
SourceFile: "CorsRegistration.java"