public class org.springframework.web.context.request.ServletRequestAttributes extends org.springframework.web.context.request.AbstractRequestAttributes
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.web.context.request.ServletRequestAttributes
  super_class: org.springframework.web.context.request.AbstractRequestAttributes
{
  public static final java.lang.String DESTRUCTION_CALLBACK_NAME_PREFIX;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  protected static final java.util.Set<java.lang.Class<?>> immutableValueTypes;
    descriptor: Ljava/util/Set;
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    Signature: Ljava/util/Set<Ljava/lang/Class<*>;>;

  private final javax.servlet.http.HttpServletRequest request;
    descriptor: Ljavax/servlet/http/HttpServletRequest;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private javax.servlet.http.HttpServletResponse response;
    descriptor: Ljavax/servlet/http/HttpServletResponse;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  private volatile javax.servlet.http.HttpSession session;
    descriptor: Ljavax/servlet/http/HttpSession;
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 51
            new java.lang.StringBuilder
            dup
            ldc Lorg/springframework/web/context/request/ServletRequestAttributes;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc ".DESTRUCTION_CALLBACK."
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         1: .line 50
            putstatic org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK_NAME_PREFIX:Ljava/lang/String;
         2: .line 53
            new java.util.HashSet
            dup
            bipush 16
            invokespecial java.util.HashSet.<init>:(I)V
            putstatic org.springframework.web.context.request.ServletRequestAttributes.immutableValueTypes:Ljava/util/Set;
         3: .line 56
            getstatic org.springframework.web.context.request.ServletRequestAttributes.immutableValueTypes:Ljava/util/Set;
            getstatic org.springframework.util.NumberUtils.STANDARD_NUMBER_TYPES:Ljava/util/Set;
            invokeinterface java.util.Set.addAll:(Ljava/util/Collection;)Z
            pop
         4: .line 57
            getstatic org.springframework.web.context.request.ServletRequestAttributes.immutableValueTypes:Ljava/util/Set;
            ldc Ljava/lang/Boolean;
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
         5: .line 58
            getstatic org.springframework.web.context.request.ServletRequestAttributes.immutableValueTypes:Ljava/util/Set;
            ldc Ljava/lang/Character;
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
         6: .line 59
            getstatic org.springframework.web.context.request.ServletRequestAttributes.immutableValueTypes:Ljava/util/Set;
            ldc Ljava/lang/String;
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
         7: .line 60
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(javax.servlet.http.HttpServletRequest);
    descriptor: (Ljavax/servlet/http/HttpServletRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.springframework.web.context.request.ServletRequestAttributes this
        start local 1 // javax.servlet.http.HttpServletRequest request
         0: .line 78
            aload 0 /* this */
            invokespecial org.springframework.web.context.request.AbstractRequestAttributes.<init>:()V
         1: .line 71
            aload 0 /* this */
            new java.util.concurrent.ConcurrentHashMap
            dup
            iconst_1
            invokespecial java.util.concurrent.ConcurrentHashMap.<init>:(I)V
            putfield org.springframework.web.context.request.ServletRequestAttributes.sessionAttributesToUpdate:Ljava/util/Map;
         2: .line 79
            aload 1 /* request */
            ldc "Request must not be null"
            invokestatic org.springframework.util.Assert.notNull:(Ljava/lang/Object;Ljava/lang/String;)V
         3: .line 80
            aload 0 /* this */
            aload 1 /* request */
            putfield org.springframework.web.context.request.ServletRequestAttributes.request:Ljavax/servlet/http/HttpServletRequest;
         4: .line 81
            return
        end local 1 // javax.servlet.http.HttpServletRequest request
        end local 0 // org.springframework.web.context.request.ServletRequestAttributes this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lorg/springframework/web/context/request/ServletRequestAttributes;
            0    5     1  request  Ljavax/servlet/http/HttpServletRequest;
    MethodParameters:
         Name  Flags
      request  

  public void <init>(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse);
    descriptor: (Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.springframework.web.context.request.ServletRequestAttributes this
        start local 1 // javax.servlet.http.HttpServletRequest request
        start local 2 // javax.servlet.http.HttpServletResponse response
         0: .line 89
            aload 0 /* this */
            aload 1 /* request */
            invokespecial org.springframework.web.context.request.ServletRequestAttributes.<init>:(Ljavax/servlet/http/HttpServletRequest;)V
         1: .line 90
            aload 0 /* this */
            aload 2 /* response */
            putfield org.springframework.web.context.request.ServletRequestAttributes.response:Ljavax/servlet/http/HttpServletResponse;
         2: .line 91
            return
        end local 2 // javax.servlet.http.HttpServletResponse response
        end local 1 // javax.servlet.http.HttpServletRequest request
        end local 0 // org.springframework.web.context.request.ServletRequestAttributes this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/springframework/web/context/request/ServletRequestAttributes;
            0    3     1   request  Ljavax/servlet/http/HttpServletRequest;
            0    3     2  response  Ljavax/servlet/http/HttpServletResponse;
    RuntimeVisibleParameterAnnotations: 
      0:
      1:
        org.springframework.lang.Nullable()
    MethodParameters:
          Name  Flags
      request   
      response  

  public final javax.servlet.http.HttpServletRequest getRequest();
    descriptor: ()Ljavax/servlet/http/HttpServletRequest;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.web.context.request.ServletRequestAttributes this
         0: .line 98
            aload 0 /* this */
            getfield org.springframework.web.context.request.ServletRequestAttributes.request:Ljavax/servlet/http/HttpServletRequest;
            areturn
        end local 0 // org.springframework.web.context.request.ServletRequestAttributes this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/web/context/request/ServletRequestAttributes;

  public final javax.servlet.http.HttpServletResponse getResponse();
    descriptor: ()Ljavax/servlet/http/HttpServletResponse;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.web.context.request.ServletRequestAttributes this
         0: .line 106
            aload 0 /* this */
            getfield org.springframework.web.context.request.ServletRequestAttributes.response:Ljavax/servlet/http/HttpServletResponse;
            areturn
        end local 0 // org.springframework.web.context.request.ServletRequestAttributes this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/web/context/request/ServletRequestAttributes;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  protected final javax.servlet.http.HttpSession getSession(boolean);
    descriptor: (Z)Ljavax/servlet/http/HttpSession;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.springframework.web.context.request.ServletRequestAttributes this
        start local 1 // boolean allowCreate
         0: .line 115
            aload 0 /* this */
            invokevirtual org.springframework.web.context.request.ServletRequestAttributes.isRequestActive:()Z
            ifeq 4
         1: .line 116
            aload 0 /* this */
            getfield org.springframework.web.context.request.ServletRequestAttributes.request:Ljavax/servlet/http/HttpServletRequest;
            iload 1 /* allowCreate */
            invokeinterface javax.servlet.http.HttpServletRequest.getSession:(Z)Ljavax/servlet/http/HttpSession;
            astore 2 /* session */
        start local 2 // javax.servlet.http.HttpSession session
         2: .line 117
            aload 0 /* this */
            aload 2 /* session */
            putfield org.springframework.web.context.request.ServletRequestAttributes.session:Ljavax/servlet/http/HttpSession;
         3: .line 118
            aload 2 /* session */
            areturn
        end local 2 // javax.servlet.http.HttpSession session
         4: .line 122
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.springframework.web.context.request.ServletRequestAttributes.session:Ljavax/servlet/http/HttpSession;
            astore 2 /* session */
        start local 2 // javax.servlet.http.HttpSession session
         5: .line 123
            aload 2 /* session */
            ifnonnull 12
         6: .line 124
            iload 1 /* allowCreate */
            ifeq 10
         7: .line 125
            new java.lang.IllegalStateException
            dup
         8: .line 126
            ldc "No session found and request already completed - cannot create new session!"
         9: .line 125
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        10: .line 129
      StackMap locals: javax.servlet.http.HttpSession
      StackMap stack:
            aload 0 /* this */
            getfield org.springframework.web.context.request.ServletRequestAttributes.request:Ljavax/servlet/http/HttpServletRequest;
            iconst_0
            invokeinterface javax.servlet.http.HttpServletRequest.getSession:(Z)Ljavax/servlet/http/HttpSession;
            astore 2 /* session */
        11: .line 130
            aload 0 /* this */
            aload 2 /* session */
            putfield org.springframework.web.context.request.ServletRequestAttributes.session:Ljavax/servlet/http/HttpSession;
        12: .line 133
      StackMap locals:
      StackMap stack:
            aload 2 /* session */
            areturn
        end local 2 // javax.servlet.http.HttpSession session
        end local 1 // boolean allowCreate
        end local 0 // org.springframework.web.context.request.ServletRequestAttributes this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   13     0         this  Lorg/springframework/web/context/request/ServletRequestAttributes;
            0   13     1  allowCreate  Z
            2    4     2      session  Ljavax/servlet/http/HttpSession;
            5   13     2      session  Ljavax/servlet/http/HttpSession;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()
    MethodParameters:
             Name  Flags
      allowCreate  

  private javax.servlet.http.HttpSession obtainSession();
    descriptor: ()Ljavax/servlet/http/HttpSession;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.springframework.web.context.request.ServletRequestAttributes this
         0: .line 138
            aload 0 /* this */
            iconst_1
            invokevirtual org.springframework.web.context.request.ServletRequestAttributes.getSession:(Z)Ljavax/servlet/http/HttpSession;
            astore 1 /* session */
        start local 1 // javax.servlet.http.HttpSession session
         1: .line 139
            aload 1 /* session */
            ifnull 2
            iconst_1
            goto 3
      StackMap locals: javax.servlet.http.HttpSession
      StackMap stack:
         2: iconst_0
      StackMap locals:
      StackMap stack: int
         3: ldc "No HttpSession"
            invokestatic org.springframework.util.Assert.state:(ZLjava/lang/String;)V
         4: .line 140
            aload 1 /* session */
            areturn
        end local 1 // javax.servlet.http.HttpSession session
        end local 0 // org.springframework.web.context.request.ServletRequestAttributes this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lorg/springframework/web/context/request/ServletRequestAttributes;
            1    5     1  session  Ljavax/servlet/http/HttpSession;

  public java.lang.Object getAttribute(java.lang.String, int);
    descriptor: (Ljava/lang/String;I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // org.springframework.web.context.request.ServletRequestAttributes this
        start local 1 // java.lang.String name
        start local 2 // int scope
         0: .line 146
            iload 2 /* scope */
            ifne 6
         1: .line 147
            aload 0 /* this */
            invokevirtual org.springframework.web.context.request.ServletRequestAttributes.isRequestActive:()Z
            ifne 5
         2: .line 148
            new java.lang.IllegalStateException
            dup
         3: .line 149
            ldc "Cannot ask for request attribute - request is not active anymore!"
         4: .line 148
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 151
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.springframework.web.context.request.ServletRequestAttributes.request:Ljavax/servlet/http/HttpServletRequest;
            aload 1 /* name */
            invokeinterface javax.servlet.http.HttpServletRequest.getAttribute:(Ljava/lang/String;)Ljava/lang/Object;
            areturn
         6: .line 154
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            invokevirtual org.springframework.web.context.request.ServletRequestAttributes.getSession:(Z)Ljavax/servlet/http/HttpSession;
            astore 3 /* session */
        start local 3 // javax.servlet.http.HttpSession session
         7: .line 155
            aload 3 /* session */
            ifnull 14
         8: .line 157
            aload 3 /* session */
            aload 1 /* name */
            invokeinterface javax.servlet.http.HttpSession.getAttribute:(Ljava/lang/String;)Ljava/lang/Object;
            astore 4 /* value */
        start local 4 // java.lang.Object value
         9: .line 158
            aload 4 /* value */
            ifnull 11
        10: .line 159
            aload 0 /* this */
            getfield org.springframework.web.context.request.ServletRequestAttributes.sessionAttributesToUpdate:Ljava/util/Map;
            aload 1 /* name */
            aload 4 /* value */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        11: .line 161
      StackMap locals: javax.servlet.http.HttpSession java.lang.Object
      StackMap stack:
            aload 4 /* value */
        12: areturn
        end local 4 // java.lang.Object value
        13: .line 163
      StackMap locals: org.springframework.web.context.request.ServletRequestAttributes java.lang.String int javax.servlet.http.HttpSession
      StackMap stack: java.lang.IllegalStateException
            pop
        14: .line 167
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 3 // javax.servlet.http.HttpSession session
        end local 2 // int scope
        end local 1 // java.lang.String name
        end local 0 // org.springframework.web.context.request.ServletRequestAttributes this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   15     0     this  Lorg/springframework/web/context/request/ServletRequestAttributes;
            0   15     1     name  Ljava/lang/String;
            0   15     2    scope  I
            7   15     3  session  Ljavax/servlet/http/HttpSession;
            9   13     4    value  Ljava/lang/Object;
      Exception table:
        from    to  target  type
           8    12      13  Class java.lang.IllegalStateException
    MethodParameters:
       Name  Flags
      name   
      scope  

  public void setAttribute(java.lang.String, java.lang.Object, int);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // org.springframework.web.context.request.ServletRequestAttributes this
        start local 1 // java.lang.String name
        start local 2 // java.lang.Object value
        start local 3 // int scope
         0: .line 173
            iload 3 /* scope */
            ifne 7
         1: .line 174
            aload 0 /* this */
            invokevirtual org.springframework.web.context.request.ServletRequestAttributes.isRequestActive:()Z
            ifne 5
         2: .line 175
            new java.lang.IllegalStateException
            dup
         3: .line 176
            ldc "Cannot set request attribute - request is not active anymore!"
         4: .line 175
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 178
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.springframework.web.context.request.ServletRequestAttributes.request:Ljavax/servlet/http/HttpServletRequest;
            aload 1 /* name */
            aload 2 /* value */
            invokeinterface javax.servlet.http.HttpServletRequest.setAttribute:(Ljava/lang/String;Ljava/lang/Object;)V
         6: .line 179
            goto 10
         7: .line 181
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.springframework.web.context.request.ServletRequestAttributes.obtainSession:()Ljavax/servlet/http/HttpSession;
            astore 4 /* session */
        start local 4 // javax.servlet.http.HttpSession session
         8: .line 182
            aload 0 /* this */
            getfield org.springframework.web.context.request.ServletRequestAttributes.sessionAttributesToUpdate:Ljava/util/Map;
            aload 1 /* name */
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         9: .line 183
            aload 4 /* session */
            aload 1 /* name */
            aload 2 /* value */
            invokeinterface javax.servlet.http.HttpSession.setAttribute:(Ljava/lang/String;Ljava/lang/Object;)V
        end local 4 // javax.servlet.http.HttpSession session
        10: .line 185
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int scope
        end local 2 // java.lang.Object value
        end local 1 // java.lang.String name
        end local 0 // org.springframework.web.context.request.ServletRequestAttributes this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   11     0     this  Lorg/springframework/web/context/request/ServletRequestAttributes;
            0   11     1     name  Ljava/lang/String;
            0   11     2    value  Ljava/lang/Object;
            0   11     3    scope  I
            8   10     4  session  Ljavax/servlet/http/HttpSession;
    MethodParameters:
       Name  Flags
      name   
      value  
      scope  

  public void removeAttribute(java.lang.String, int);
    descriptor: (Ljava/lang/String;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.springframework.web.context.request.ServletRequestAttributes this
        start local 1 // java.lang.String name
        start local 2 // int scope
         0: .line 189
            iload 2 /* scope */
            ifne 5
         1: .line 190
            aload 0 /* this */
            invokevirtual org.springframework.web.context.request.ServletRequestAttributes.isRequestActive:()Z
            ifeq 12
         2: .line 191
            aload 0 /* this */
            getfield org.springframework.web.context.request.ServletRequestAttributes.request:Ljavax/servlet/http/HttpServletRequest;
            aload 1 /* name */
            invokeinterface javax.servlet.http.HttpServletRequest.removeAttribute:(Ljava/lang/String;)V
         3: .line 192
            aload 0 /* this */
            aload 1 /* name */
            invokevirtual org.springframework.web.context.request.ServletRequestAttributes.removeRequestDestructionCallback:(Ljava/lang/String;)V
         4: .line 194
            goto 12
         5: .line 196
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            invokevirtual org.springframework.web.context.request.ServletRequestAttributes.getSession:(Z)Ljavax/servlet/http/HttpSession;
            astore 3 /* session */
        start local 3 // javax.servlet.http.HttpSession session
         6: .line 197
            aload 3 /* session */
            ifnull 12
         7: .line 198
            aload 0 /* this */
            getfield org.springframework.web.context.request.ServletRequestAttributes.sessionAttributesToUpdate:Ljava/util/Map;
            aload 1 /* name */
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         8: .line 200
            aload 3 /* session */
            aload 1 /* name */
            invokeinterface javax.servlet.http.HttpSession.removeAttribute:(Ljava/lang/String;)V
         9: .line 202
            aload 3 /* session */
            new java.lang.StringBuilder
            dup
            getstatic org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK_NAME_PREFIX:Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* name */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokeinterface javax.servlet.http.HttpSession.removeAttribute:(Ljava/lang/String;)V
        10: .line 203
            goto 12
        11: .line 204
      StackMap locals: org.springframework.web.context.request.ServletRequestAttributes java.lang.String int javax.servlet.http.HttpSession
      StackMap stack: java.lang.IllegalStateException
            pop
        end local 3 // javax.servlet.http.HttpSession session
        12: .line 209
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int scope
        end local 1 // java.lang.String name
        end local 0 // org.springframework.web.context.request.ServletRequestAttributes this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   13     0     this  Lorg/springframework/web/context/request/ServletRequestAttributes;
            0   13     1     name  Ljava/lang/String;
            0   13     2    scope  I
            6   12     3  session  Ljavax/servlet/http/HttpSession;
      Exception table:
        from    to  target  type
           8    10      11  Class java.lang.IllegalStateException
    MethodParameters:
       Name  Flags
      name   
      scope  

  public java.lang.String[] getAttributeNames(int);
    descriptor: (I)[Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.springframework.web.context.request.ServletRequestAttributes this
        start local 1 // int scope
         0: .line 213
            iload 1 /* scope */
            ifne 6
         1: .line 214
            aload 0 /* this */
            invokevirtual org.springframework.web.context.request.ServletRequestAttributes.isRequestActive:()Z
            ifne 5
         2: .line 215
            new java.lang.IllegalStateException
            dup
         3: .line 216
            ldc "Cannot ask for request attributes - request is not active anymore!"
         4: .line 215
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 218
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.springframework.web.context.request.ServletRequestAttributes.request:Ljavax/servlet/http/HttpServletRequest;
            invokeinterface javax.servlet.http.HttpServletRequest.getAttributeNames:()Ljava/util/Enumeration;
            invokestatic org.springframework.util.StringUtils.toStringArray:(Ljava/util/Enumeration;)[Ljava/lang/String;
            areturn
         6: .line 221
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            invokevirtual org.springframework.web.context.request.ServletRequestAttributes.getSession:(Z)Ljavax/servlet/http/HttpSession;
            astore 2 /* session */
        start local 2 // javax.servlet.http.HttpSession session
         7: .line 222
            aload 2 /* session */
            ifnull 11
         8: .line 224
            aload 2 /* session */
            invokeinterface javax.servlet.http.HttpSession.getAttributeNames:()Ljava/util/Enumeration;
            invokestatic org.springframework.util.StringUtils.toStringArray:(Ljava/util/Enumeration;)[Ljava/lang/String;
         9: areturn
        10: .line 226
      StackMap locals: org.springframework.web.context.request.ServletRequestAttributes int javax.servlet.http.HttpSession
      StackMap stack: java.lang.IllegalStateException
            pop
        11: .line 230
      StackMap locals:
      StackMap stack:
            iconst_0
            anewarray java.lang.String
            areturn
        end local 2 // javax.servlet.http.HttpSession session
        end local 1 // int scope
        end local 0 // org.springframework.web.context.request.ServletRequestAttributes this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   12     0     this  Lorg/springframework/web/context/request/ServletRequestAttributes;
            0   12     1    scope  I
            7   12     2  session  Ljavax/servlet/http/HttpSession;
      Exception table:
        from    to  target  type
           8     9      10  Class java.lang.IllegalStateException
    MethodParameters:
       Name  Flags
      scope  

  public void registerDestructionCallback(java.lang.String, java.lang.Runnable, int);
    descriptor: (Ljava/lang/String;Ljava/lang/Runnable;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // org.springframework.web.context.request.ServletRequestAttributes this
        start local 1 // java.lang.String name
        start local 2 // java.lang.Runnable callback
        start local 3 // int scope
         0: .line 236
            iload 3 /* scope */
            ifne 3
         1: .line 237
            aload 0 /* this */
            aload 1 /* name */
            aload 2 /* callback */
            invokevirtual org.springframework.web.context.request.ServletRequestAttributes.registerRequestDestructionCallback:(Ljava/lang/String;Ljava/lang/Runnable;)V
         2: .line 238
            goto 4
         3: .line 240
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* name */
            aload 2 /* callback */
            invokevirtual org.springframework.web.context.request.ServletRequestAttributes.registerSessionDestructionCallback:(Ljava/lang/String;Ljava/lang/Runnable;)V
         4: .line 242
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int scope
        end local 2 // java.lang.Runnable callback
        end local 1 // java.lang.String name
        end local 0 // org.springframework.web.context.request.ServletRequestAttributes this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/springframework/web/context/request/ServletRequestAttributes;
            0    5     1      name  Ljava/lang/String;
            0    5     2  callback  Ljava/lang/Runnable;
            0    5     3     scope  I
    MethodParameters:
          Name  Flags
      name      
      callback  
      scope     

  public java.lang.Object resolveReference(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.web.context.request.ServletRequestAttributes this
        start local 1 // java.lang.String key
         0: .line 246
            ldc "request"
            aload 1 /* key */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 2
         1: .line 247
            aload 0 /* this */
            getfield org.springframework.web.context.request.ServletRequestAttributes.request:Ljavax/servlet/http/HttpServletRequest;
            areturn
         2: .line 249
      StackMap locals:
      StackMap stack:
            ldc "session"
            aload 1 /* key */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 4
         3: .line 250
            aload 0 /* this */
            iconst_1
            invokevirtual org.springframework.web.context.request.ServletRequestAttributes.getSession:(Z)Ljavax/servlet/http/HttpSession;
            areturn
         4: .line 253
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 1 // java.lang.String key
        end local 0 // org.springframework.web.context.request.ServletRequestAttributes this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/springframework/web/context/request/ServletRequestAttributes;
            0    5     1   key  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      key   

  public java.lang.String getSessionId();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.web.context.request.ServletRequestAttributes this
         0: .line 259
            aload 0 /* this */
            invokevirtual org.springframework.web.context.request.ServletRequestAttributes.obtainSession:()Ljavax/servlet/http/HttpSession;
            invokeinterface javax.servlet.http.HttpSession.getId:()Ljava/lang/String;
            areturn
        end local 0 // org.springframework.web.context.request.ServletRequestAttributes this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/web/context/request/ServletRequestAttributes;

  public java.lang.Object getSessionMutex();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.web.context.request.ServletRequestAttributes this
         0: .line 264
            aload 0 /* this */
            invokevirtual org.springframework.web.context.request.ServletRequestAttributes.obtainSession:()Ljavax/servlet/http/HttpSession;
            invokestatic org.springframework.web.util.WebUtils.getSessionMutex:(Ljavax/servlet/http/HttpSession;)Ljava/lang/Object;
            areturn
        end local 0 // org.springframework.web.context.request.ServletRequestAttributes this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/web/context/request/ServletRequestAttributes;

  protected void updateAccessedSessionAttributes();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=7, args_size=1
        start local 0 // org.springframework.web.context.request.ServletRequestAttributes this
         0: .line 274
            aload 0 /* this */
            getfield org.springframework.web.context.request.ServletRequestAttributes.sessionAttributesToUpdate:Ljava/util/Map;
            invokeinterface java.util.Map.isEmpty:()Z
            ifne 14
         1: .line 276
            aload 0 /* this */
            iconst_0
            invokevirtual org.springframework.web.context.request.ServletRequestAttributes.getSession:(Z)Ljavax/servlet/http/HttpSession;
            astore 1 /* session */
        start local 1 // javax.servlet.http.HttpSession session
         2: .line 277
            aload 1 /* session */
            ifnull 13
         3: .line 279
            aload 0 /* this */
            getfield org.springframework.web.context.request.ServletRequestAttributes.sessionAttributesToUpdate:Ljava/util/Map;
            invokeinterface java.util.Map.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 3
            goto 10
      StackMap locals: org.springframework.web.context.request.ServletRequestAttributes javax.servlet.http.HttpSession top java.util.Iterator
      StackMap stack:
         4: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 2 /* entry */
        start local 2 // java.util.Map$Entry entry
         5: .line 280
            aload 2 /* entry */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 4 /* name */
        start local 4 // java.lang.String name
         6: .line 281
            aload 2 /* entry */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            astore 5 /* newValue */
        start local 5 // java.lang.Object newValue
         7: .line 282
            aload 1 /* session */
            aload 4 /* name */
            invokeinterface javax.servlet.http.HttpSession.getAttribute:(Ljava/lang/String;)Ljava/lang/Object;
            astore 6 /* oldValue */
        start local 6 // java.lang.Object oldValue
         8: .line 283
            aload 6 /* oldValue */
            aload 5 /* newValue */
            if_acmpne 10
            aload 0 /* this */
            aload 4 /* name */
            aload 5 /* newValue */
            invokevirtual org.springframework.web.context.request.ServletRequestAttributes.isImmutableSessionAttribute:(Ljava/lang/String;Ljava/lang/Object;)Z
            ifne 10
         9: .line 284
            aload 1 /* session */
            aload 4 /* name */
            aload 5 /* newValue */
            invokeinterface javax.servlet.http.HttpSession.setAttribute:(Ljava/lang/String;Ljava/lang/Object;)V
        end local 6 // java.lang.Object oldValue
        end local 5 // java.lang.Object newValue
        end local 4 // java.lang.String name
        end local 2 // java.util.Map$Entry entry
        10: .line 279
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
        11: .line 287
            goto 13
        12: .line 288
      StackMap locals: org.springframework.web.context.request.ServletRequestAttributes javax.servlet.http.HttpSession
      StackMap stack: java.lang.IllegalStateException
            pop
        13: .line 292
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.springframework.web.context.request.ServletRequestAttributes.sessionAttributesToUpdate:Ljava/util/Map;
            invokeinterface java.util.Map.clear:()V
        end local 1 // javax.servlet.http.HttpSession session
        14: .line 294
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.springframework.web.context.request.ServletRequestAttributes this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   15     0      this  Lorg/springframework/web/context/request/ServletRequestAttributes;
            2   14     1   session  Ljavax/servlet/http/HttpSession;
            5   10     2     entry  Ljava/util/Map$Entry<Ljava/lang/String;Ljava/lang/Object;>;
            6   10     4      name  Ljava/lang/String;
            7   10     5  newValue  Ljava/lang/Object;
            8   10     6  oldValue  Ljava/lang/Object;
      Exception table:
        from    to  target  type
           3    11      12  Class java.lang.IllegalStateException

  protected boolean isImmutableSessionAttribute(java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.springframework.web.context.request.ServletRequestAttributes this
        start local 1 // java.lang.String name
        start local 2 // java.lang.Object value
         0: .line 309
            aload 2 /* value */
            ifnull 1
            getstatic org.springframework.web.context.request.ServletRequestAttributes.immutableValueTypes:Ljava/util/Set;
            aload 2 /* value */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokeinterface java.util.Set.contains:(Ljava/lang/Object;)Z
            ifne 1
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
        end local 2 // java.lang.Object value
        end local 1 // java.lang.String name
        end local 0 // org.springframework.web.context.request.ServletRequestAttributes this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/springframework/web/context/request/ServletRequestAttributes;
            0    2     1   name  Ljava/lang/String;
            0    2     2  value  Ljava/lang/Object;
    RuntimeVisibleParameterAnnotations: 
      0:
      1:
        org.springframework.lang.Nullable()
    MethodParameters:
       Name  Flags
      name   
      value  

  protected void registerSessionDestructionCallback(java.lang.String, java.lang.Runnable);
    descriptor: (Ljava/lang/String;Ljava/lang/Runnable;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.springframework.web.context.request.ServletRequestAttributes this
        start local 1 // java.lang.String name
        start local 2 // java.lang.Runnable callback
         0: .line 320
            aload 0 /* this */
            invokevirtual org.springframework.web.context.request.ServletRequestAttributes.obtainSession:()Ljavax/servlet/http/HttpSession;
            astore 3 /* session */
        start local 3 // javax.servlet.http.HttpSession session
         1: .line 321
            aload 3 /* session */
            new java.lang.StringBuilder
            dup
            getstatic org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK_NAME_PREFIX:Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* name */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         2: .line 322
            new org.springframework.web.context.request.DestructionCallbackBindingListener
            dup
            aload 2 /* callback */
            invokespecial org.springframework.web.context.request.DestructionCallbackBindingListener.<init>:(Ljava/lang/Runnable;)V
         3: .line 321
            invokeinterface javax.servlet.http.HttpSession.setAttribute:(Ljava/lang/String;Ljava/lang/Object;)V
         4: .line 323
            return
        end local 3 // javax.servlet.http.HttpSession session
        end local 2 // java.lang.Runnable callback
        end local 1 // java.lang.String name
        end local 0 // org.springframework.web.context.request.ServletRequestAttributes this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/springframework/web/context/request/ServletRequestAttributes;
            0    5     1      name  Ljava/lang/String;
            0    5     2  callback  Ljava/lang/Runnable;
            1    5     3   session  Ljavax/servlet/http/HttpSession;
    MethodParameters:
          Name  Flags
      name      
      callback  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.web.context.request.ServletRequestAttributes this
         0: .line 328
            aload 0 /* this */
            getfield org.springframework.web.context.request.ServletRequestAttributes.request:Ljavax/servlet/http/HttpServletRequest;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.springframework.web.context.request.ServletRequestAttributes this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/web/context/request/ServletRequestAttributes;
}
SourceFile: "ServletRequestAttributes.java"
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map