public class org.glassfish.grizzly.servlet.HttpSessionImpl implements jakarta.servlet.http.HttpSession
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.glassfish.grizzly.servlet.HttpSessionImpl
  super_class: java.lang.Object
{
  private static final java.util.logging.Logger LOGGER;
    descriptor: Ljava/util/logging/Logger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final org.glassfish.grizzly.http.server.Session session;
    descriptor: Lorg/glassfish/grizzly/http/server/Session;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.glassfish.grizzly.servlet.WebappContext contextImpl;
    descriptor: Lorg/glassfish/grizzly/servlet/WebappContext;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 49
            ldc Lorg/glassfish/grizzly/servlet/HttpSessionImpl;
            invokestatic org.glassfish.grizzly.Grizzly.logger:(Ljava/lang/Class;)Ljava/util/logging/Logger;
            putstatic org.glassfish.grizzly.servlet.HttpSessionImpl.LOGGER:Ljava/util/logging/Logger;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(org.glassfish.grizzly.servlet.WebappContext, org.glassfish.grizzly.http.server.Session);
    descriptor: (Lorg/glassfish/grizzly/servlet/WebappContext;Lorg/glassfish/grizzly/http/server/Session;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
        start local 1 // org.glassfish.grizzly.servlet.WebappContext contextImpl
        start local 2 // org.glassfish.grizzly.http.server.Session session
         0: .line 65
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 66
            aload 0 /* this */
            aload 1 /* contextImpl */
            putfield org.glassfish.grizzly.servlet.HttpSessionImpl.contextImpl:Lorg/glassfish/grizzly/servlet/WebappContext;
         2: .line 67
            aload 0 /* this */
            aload 2 /* session */
            putfield org.glassfish.grizzly.servlet.HttpSessionImpl.session:Lorg/glassfish/grizzly/http/server/Session;
         3: .line 68
            return
        end local 2 // org.glassfish.grizzly.http.server.Session session
        end local 1 // org.glassfish.grizzly.servlet.WebappContext contextImpl
        end local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lorg/glassfish/grizzly/servlet/HttpSessionImpl;
            0    4     1  contextImpl  Lorg/glassfish/grizzly/servlet/WebappContext;
            0    4     2      session  Lorg/glassfish/grizzly/http/server/Session;
    MethodParameters:
             Name  Flags
      contextImpl  final
      session      final

  public long getCreationTime();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
         0: .line 75
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.HttpSessionImpl.session:Lorg/glassfish/grizzly/http/server/Session;
            invokevirtual org.glassfish.grizzly.http.server.Session.isValid:()Z
            ifne 2
         1: .line 76
            new java.lang.IllegalStateException
            dup
            ldc "The session was invalidated"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 79
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.HttpSessionImpl.session:Lorg/glassfish/grizzly/http/server/Session;
            invokevirtual org.glassfish.grizzly.http.server.Session.getCreationTime:()J
            lreturn
        end local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/glassfish/grizzly/servlet/HttpSessionImpl;

  public java.lang.String getId();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
         0: .line 87
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.HttpSessionImpl.session:Lorg/glassfish/grizzly/http/server/Session;
            invokevirtual org.glassfish.grizzly.http.server.Session.getIdInternal:()Ljava/lang/String;
            areturn
        end local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/servlet/HttpSessionImpl;

  protected boolean isValid();
    descriptor: ()Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
         0: .line 96
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.HttpSessionImpl.session:Lorg/glassfish/grizzly/http/server/Session;
            invokevirtual org.glassfish.grizzly.http.server.Session.isValid:()Z
            ireturn
        end local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/servlet/HttpSessionImpl;

  public long getLastAccessedTime();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
         0: .line 104
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.HttpSessionImpl.session:Lorg/glassfish/grizzly/http/server/Session;
            invokevirtual org.glassfish.grizzly.http.server.Session.isValid:()Z
            ifne 2
         1: .line 105
            new java.lang.IllegalStateException
            dup
            ldc "The session was invalidated"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 108
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.HttpSessionImpl.session:Lorg/glassfish/grizzly/http/server/Session;
            invokevirtual org.glassfish.grizzly.http.server.Session.getTimestamp:()J
            lreturn
        end local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/glassfish/grizzly/servlet/HttpSessionImpl;

  protected void access();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
         0: .line 115
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.HttpSessionImpl.session:Lorg/glassfish/grizzly/http/server/Session;
            invokevirtual org.glassfish.grizzly.http.server.Session.access:()J
            pop2
         1: .line 116
            return
        end local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/servlet/HttpSessionImpl;

  public jakarta.servlet.ServletContext getServletContext();
    descriptor: ()Ljakarta/servlet/ServletContext;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
         0: .line 123
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.HttpSessionImpl.contextImpl:Lorg/glassfish/grizzly/servlet/WebappContext;
            areturn
        end local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/servlet/HttpSessionImpl;

  public void setMaxInactiveInterval(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
        start local 1 // int sessionTimeout
         0: .line 131
            iload 1 /* sessionTimeout */
            ifge 3
         1: .line 132
            iconst_m1
            istore 1 /* sessionTimeout */
         2: .line 133
            goto 4
         3: .line 134
      StackMap locals:
      StackMap stack:
            getstatic java.util.concurrent.TimeUnit.MILLISECONDS:Ljava/util/concurrent/TimeUnit;
            iload 1 /* sessionTimeout */
            i2l
            getstatic java.util.concurrent.TimeUnit.SECONDS:Ljava/util/concurrent/TimeUnit;
            invokevirtual java.util.concurrent.TimeUnit.convert:(JLjava/util/concurrent/TimeUnit;)J
            l2i
            istore 1 /* sessionTimeout */
         4: .line 137
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.HttpSessionImpl.session:Lorg/glassfish/grizzly/http/server/Session;
            iload 1 /* sessionTimeout */
            i2l
            invokevirtual org.glassfish.grizzly.http.server.Session.setSessionTimeout:(J)V
         5: .line 138
            return
        end local 1 // int sessionTimeout
        end local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    6     0            this  Lorg/glassfish/grizzly/servlet/HttpSessionImpl;
            0    6     1  sessionTimeout  I
    MethodParameters:
                Name  Flags
      sessionTimeout  

  public int getMaxInactiveInterval();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=1
        start local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
         0: .line 145
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.HttpSessionImpl.session:Lorg/glassfish/grizzly/http/server/Session;
            invokevirtual org.glassfish.grizzly.http.server.Session.getSessionTimeout:()J
            lstore 1 /* sessionTimeout */
        start local 1 // long sessionTimeout
         1: .line 146
            lload 1 /* sessionTimeout */
            lconst_0
            lcmp
            ifge 3
         2: .line 147
            iconst_m1
            ireturn
         3: .line 150
      StackMap locals: long
      StackMap stack:
            getstatic java.util.concurrent.TimeUnit.SECONDS:Ljava/util/concurrent/TimeUnit;
            lload 1 /* sessionTimeout */
            getstatic java.util.concurrent.TimeUnit.MILLISECONDS:Ljava/util/concurrent/TimeUnit;
            invokevirtual java.util.concurrent.TimeUnit.convert:(JLjava/util/concurrent/TimeUnit;)J
            lstore 1 /* sessionTimeout */
         4: .line 151
            lload 1 /* sessionTimeout */
            ldc 2147483647
            lcmp
            ifle 6
         5: .line 152
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            lload 1 /* sessionTimeout */
            invokestatic java.lang.String.valueOf:(J)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc " cannot be cast to int."
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 155
      StackMap locals:
      StackMap stack:
            lload 1 /* sessionTimeout */
            l2i
            ireturn
        end local 1 // long sessionTimeout
        end local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    7     0            this  Lorg/glassfish/grizzly/servlet/HttpSessionImpl;
            1    7     1  sessionTimeout  J

  public jakarta.servlet.http.HttpSessionContext getSessionContext();
    descriptor: ()Ljakarta/servlet/http/HttpSessionContext;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
         0: .line 163
            aconst_null
            areturn
        end local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/servlet/HttpSessionImpl;

  public java.lang.Object getAttribute(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.glassfish.grizzly.servlet.HttpSessionImpl this
        start local 1 // java.lang.String key
         0: .line 171
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.HttpSessionImpl.session:Lorg/glassfish/grizzly/http/server/Session;
            aload 1 /* key */
            invokevirtual org.glassfish.grizzly.http.server.Session.getAttribute:(Ljava/lang/String;)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.String key
        end local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/servlet/HttpSessionImpl;
            0    1     1   key  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      key   

  public java.lang.Object getValue(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.glassfish.grizzly.servlet.HttpSessionImpl this
        start local 1 // java.lang.String value
         0: .line 179
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.HttpSessionImpl.session:Lorg/glassfish/grizzly/http/server/Session;
            aload 1 /* value */
            invokevirtual org.glassfish.grizzly.http.server.Session.getAttribute:(Ljava/lang/String;)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.String value
        end local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/glassfish/grizzly/servlet/HttpSessionImpl;
            0    1     1  value  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      value  

  public java.util.Enumeration<java.lang.String> getAttributeNames();
    descriptor: ()Ljava/util/Enumeration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
         0: .line 187
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.HttpSessionImpl.session:Lorg/glassfish/grizzly/http/server/Session;
            invokevirtual org.glassfish.grizzly.http.server.Session.attributes:()Ljava/util/concurrent/ConcurrentMap;
            invokeinterface java.util.concurrent.ConcurrentMap.keySet:()Ljava/util/Set;
            invokestatic java.util.Collections.enumeration:(Ljava/util/Collection;)Ljava/util/Enumeration;
            areturn
        end local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/servlet/HttpSessionImpl;
    Signature: ()Ljava/util/Enumeration<Ljava/lang/String;>;

  public java.lang.String[] getValueNames();
    descriptor: ()[Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
         0: .line 195
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.HttpSessionImpl.session:Lorg/glassfish/grizzly/http/server/Session;
            invokevirtual org.glassfish.grizzly.http.server.Session.attributes:()Ljava/util/concurrent/ConcurrentMap;
            invokeinterface java.util.concurrent.ConcurrentMap.entrySet:()Ljava/util/Set;
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.HttpSessionImpl.session:Lorg/glassfish/grizzly/http/server/Session;
            invokevirtual org.glassfish.grizzly.http.server.Session.attributes:()Ljava/util/concurrent/ConcurrentMap;
            invokeinterface java.util.concurrent.ConcurrentMap.size:()I
            anewarray java.lang.String
            invokeinterface java.util.Set.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            checkcast java.lang.String[]
            areturn
        end local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/servlet/HttpSessionImpl;

  public void setAttribute(java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=10, args_size=3
        start local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
        start local 1 // java.lang.String key
        start local 2 // java.lang.Object value
         0: .line 205
            aload 2 /* value */
            ifnonnull 3
         1: .line 206
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual org.glassfish.grizzly.servlet.HttpSessionImpl.removeAttribute:(Ljava/lang/String;)V
         2: .line 207
            return
         3: .line 210
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.HttpSessionImpl.session:Lorg/glassfish/grizzly/http/server/Session;
            aload 1 /* key */
            invokevirtual org.glassfish.grizzly.http.server.Session.getAttribute:(Ljava/lang/String;)Ljava/lang/Object;
            astore 3 /* unbound */
        start local 3 // java.lang.Object unbound
         4: .line 211
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.HttpSessionImpl.session:Lorg/glassfish/grizzly/http/server/Session;
            aload 1 /* key */
            aload 2 /* value */
            invokevirtual org.glassfish.grizzly.http.server.Session.setAttribute:(Ljava/lang/String;Ljava/lang/Object;)V
         5: .line 214
            aload 3 /* unbound */
            ifnull 11
            aload 3 /* unbound */
            aload 2 /* value */
            if_acmpeq 11
            aload 3 /* unbound */
            instanceof jakarta.servlet.http.HttpSessionBindingListener
            ifeq 11
         6: .line 216
            aload 3 /* unbound */
            checkcast jakarta.servlet.http.HttpSessionBindingListener
            new jakarta.servlet.http.HttpSessionBindingEvent
            dup
            aload 0 /* this */
            aload 1 /* key */
            invokespecial jakarta.servlet.http.HttpSessionBindingEvent.<init>:(Ljakarta/servlet/http/HttpSession;Ljava/lang/String;)V
            invokeinterface jakarta.servlet.http.HttpSessionBindingListener.valueUnbound:(Ljakarta/servlet/http/HttpSessionBindingEvent;)V
         7: .line 217
            goto 11
      StackMap locals: org.glassfish.grizzly.servlet.HttpSessionImpl java.lang.String java.lang.Object java.lang.Object
      StackMap stack: java.lang.Throwable
         8: pop
         9: .line 218
            getstatic org.glassfish.grizzly.servlet.HttpSessionImpl.LOGGER:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.WARNING:Ljava/util/logging/Level;
            invokevirtual java.util.logging.Logger.isLoggable:(Ljava/util/logging/Level;)Z
            ifeq 11
        10: .line 219
            getstatic org.glassfish.grizzly.servlet.HttpSessionImpl.LOGGER:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.WARNING:Ljava/util/logging/Level;
            aload 3 /* unbound */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            invokestatic org.glassfish.grizzly.localization.LogMessages.WARNING_GRIZZLY_HTTP_SERVLET_SESSION_LISTENER_UNBOUND_ERROR:(Ljava/lang/Object;)Ljava/lang/String;
            invokevirtual java.util.logging.Logger.log:(Ljava/util/logging/Level;Ljava/lang/String;)V
        11: .line 224
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 4 /* event */
        start local 4 // jakarta.servlet.http.HttpSessionBindingEvent event
        12: .line 227
            aload 2 /* value */
            instanceof jakarta.servlet.http.HttpSessionBindingListener
            ifeq 20
        13: .line 228
            aload 2 /* value */
            aload 3 /* unbound */
            if_acmpeq 20
        14: .line 229
            new jakarta.servlet.http.HttpSessionBindingEvent
            dup
            aload 0 /* this */
            aload 1 /* key */
            aload 2 /* value */
            invokespecial jakarta.servlet.http.HttpSessionBindingEvent.<init>:(Ljakarta/servlet/http/HttpSession;Ljava/lang/String;Ljava/lang/Object;)V
            astore 4 /* event */
        15: .line 231
            aload 2 /* value */
            checkcast jakarta.servlet.http.HttpSessionBindingListener
            aload 4 /* event */
            invokeinterface jakarta.servlet.http.HttpSessionBindingListener.valueBound:(Ljakarta/servlet/http/HttpSessionBindingEvent;)V
        16: .line 232
            goto 20
      StackMap locals: org.glassfish.grizzly.servlet.HttpSessionImpl java.lang.String java.lang.Object java.lang.Object jakarta.servlet.http.HttpSessionBindingEvent
      StackMap stack: java.lang.Throwable
        17: pop
        18: .line 233
            getstatic org.glassfish.grizzly.servlet.HttpSessionImpl.LOGGER:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.WARNING:Ljava/util/logging/Level;
            invokevirtual java.util.logging.Logger.isLoggable:(Ljava/util/logging/Level;)Z
            ifeq 20
        19: .line 234
            getstatic org.glassfish.grizzly.servlet.HttpSessionImpl.LOGGER:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.WARNING:Ljava/util/logging/Level;
            aload 2 /* value */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            invokestatic org.glassfish.grizzly.localization.LogMessages.WARNING_GRIZZLY_HTTP_SERVLET_SESSION_LISTENER_BOUND_ERROR:(Ljava/lang/Object;)Ljava/lang/String;
            invokevirtual java.util.logging.Logger.log:(Ljava/util/logging/Level;Ljava/lang/String;)V
        20: .line 241
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.HttpSessionImpl.contextImpl:Lorg/glassfish/grizzly/servlet/WebappContext;
            invokevirtual org.glassfish.grizzly.servlet.WebappContext.getEventListeners:()[Ljava/util/EventListener;
            astore 5 /* listeners */
        start local 5 // java.util.EventListener[] listeners
        21: .line 242
            aload 5 /* listeners */
            arraylength
            ifne 23
        22: .line 243
            return
        23: .line 245
      StackMap locals: java.util.EventListener[]
      StackMap stack:
            iconst_0
            istore 6 /* i */
        start local 6 // int i
        24: aload 5 /* listeners */
            arraylength
            istore 7 /* len */
        start local 7 // int len
        25: goto 46
        26: .line 246
      StackMap locals: int int
      StackMap stack:
            aload 5 /* listeners */
            iload 6 /* i */
            aaload
            instanceof jakarta.servlet.http.HttpSessionAttributeListener
            ifne 28
        27: .line 247
            goto 45
        28: .line 249
      StackMap locals:
      StackMap stack:
            aload 5 /* listeners */
            iload 6 /* i */
            aaload
            checkcast jakarta.servlet.http.HttpSessionAttributeListener
            astore 8 /* listener */
        start local 8 // jakarta.servlet.http.HttpSessionAttributeListener listener
        29: .line 251
            aload 3 /* unbound */
            ifnull 34
        30: .line 252
            aload 4 /* event */
            ifnonnull 32
        31: .line 253
            new jakarta.servlet.http.HttpSessionBindingEvent
            dup
            aload 0 /* this */
            aload 1 /* key */
            aload 3 /* unbound */
            invokespecial jakarta.servlet.http.HttpSessionBindingEvent.<init>:(Ljakarta/servlet/http/HttpSession;Ljava/lang/String;Ljava/lang/Object;)V
            astore 4 /* event */
        32: .line 255
      StackMap locals: jakarta.servlet.http.HttpSessionAttributeListener
      StackMap stack:
            aload 8 /* listener */
            aload 4 /* event */
            invokeinterface jakarta.servlet.http.HttpSessionAttributeListener.attributeReplaced:(Ljakarta/servlet/http/HttpSessionBindingEvent;)V
        33: .line 256
            goto 45
        34: .line 257
      StackMap locals:
      StackMap stack:
            aload 4 /* event */
            ifnonnull 36
        35: .line 258
            new jakarta.servlet.http.HttpSessionBindingEvent
            dup
            aload 0 /* this */
            aload 1 /* key */
            aload 2 /* value */
            invokespecial jakarta.servlet.http.HttpSessionBindingEvent.<init>:(Ljakarta/servlet/http/HttpSession;Ljava/lang/String;Ljava/lang/Object;)V
            astore 4 /* event */
        36: .line 260
      StackMap locals:
      StackMap stack:
            aload 8 /* listener */
            aload 4 /* event */
            invokeinterface jakarta.servlet.http.HttpSessionAttributeListener.attributeAdded:(Ljakarta/servlet/http/HttpSessionBindingEvent;)V
        37: .line 262
            goto 45
      StackMap locals:
      StackMap stack: java.lang.Throwable
        38: astore 9 /* t */
        start local 9 // java.lang.Throwable t
        39: .line 263
            getstatic org.glassfish.grizzly.servlet.HttpSessionImpl.LOGGER:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.WARNING:Ljava/util/logging/Level;
            invokevirtual java.util.logging.Logger.isLoggable:(Ljava/util/logging/Level;)Z
            ifeq 45
        40: .line 264
            getstatic org.glassfish.grizzly.servlet.HttpSessionImpl.LOGGER:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.WARNING:Ljava/util/logging/Level;
            ldc "HttpSessionAttributeListener"
        41: .line 265
            aload 8 /* listener */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
        42: .line 264
            invokestatic org.glassfish.grizzly.localization.LogMessages.WARNING_GRIZZLY_HTTP_SERVLET_ATTRIBUTE_LISTENER_ADD_ERROR:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/String;
        43: .line 265
            aload 9 /* t */
        44: .line 264
            invokevirtual java.util.logging.Logger.log:(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/Throwable;)V
        end local 9 // java.lang.Throwable t
        end local 8 // jakarta.servlet.http.HttpSessionAttributeListener listener
        45: .line 245
      StackMap locals:
      StackMap stack:
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        46: iload 6 /* i */
            iload 7 /* len */
            if_icmplt 26
        end local 7 // int len
        end local 6 // int i
        47: .line 269
            return
        end local 5 // java.util.EventListener[] listeners
        end local 4 // jakarta.servlet.http.HttpSessionBindingEvent event
        end local 3 // java.lang.Object unbound
        end local 2 // java.lang.Object value
        end local 1 // java.lang.String key
        end local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   48     0       this  Lorg/glassfish/grizzly/servlet/HttpSessionImpl;
            0   48     1        key  Ljava/lang/String;
            0   48     2      value  Ljava/lang/Object;
            4   48     3    unbound  Ljava/lang/Object;
           12   48     4      event  Ljakarta/servlet/http/HttpSessionBindingEvent;
           21   48     5  listeners  [Ljava/util/EventListener;
           24   47     6          i  I
           25   47     7        len  I
           29   45     8   listener  Ljakarta/servlet/http/HttpSessionAttributeListener;
           39   45     9          t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           6     7       8  Class java.lang.Throwable
          15    16      17  Class java.lang.Throwable
          29    37      38  Class java.lang.Throwable
    MethodParameters:
       Name  Flags
      key    
      value  

  public void putValue(java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
        start local 1 // java.lang.String key
        start local 2 // java.lang.Object value
         0: .line 276
            aload 0 /* this */
            aload 1 /* key */
            aload 2 /* value */
            invokevirtual org.glassfish.grizzly.servlet.HttpSessionImpl.setAttribute:(Ljava/lang/String;Ljava/lang/Object;)V
         1: .line 277
            return
        end local 2 // java.lang.Object value
        end local 1 // java.lang.String key
        end local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/glassfish/grizzly/servlet/HttpSessionImpl;
            0    2     1    key  Ljava/lang/String;
            0    2     2  value  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      key    
      value  

  public void removeAttribute(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=9, args_size=2
        start local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
        start local 1 // java.lang.String key
         0: .line 284
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.HttpSessionImpl.session:Lorg/glassfish/grizzly/http/server/Session;
            aload 1 /* key */
            invokevirtual org.glassfish.grizzly.http.server.Session.removeAttribute:(Ljava/lang/String;)Ljava/lang/Object;
            astore 2 /* value */
        start local 2 // java.lang.Object value
         1: .line 286
            aload 2 /* value */
            ifnonnull 3
         2: .line 287
            return
         3: .line 291
      StackMap locals: java.lang.Object
      StackMap stack:
            aconst_null
            astore 3 /* event */
        start local 3 // jakarta.servlet.http.HttpSessionBindingEvent event
         4: .line 292
            aload 2 /* value */
            instanceof jakarta.servlet.http.HttpSessionBindingListener
            ifeq 7
         5: .line 293
            new jakarta.servlet.http.HttpSessionBindingEvent
            dup
            aload 0 /* this */
            aload 1 /* key */
            aload 2 /* value */
            invokespecial jakarta.servlet.http.HttpSessionBindingEvent.<init>:(Ljakarta/servlet/http/HttpSession;Ljava/lang/String;Ljava/lang/Object;)V
            astore 3 /* event */
         6: .line 294
            aload 2 /* value */
            checkcast jakarta.servlet.http.HttpSessionBindingListener
            aload 3 /* event */
            invokeinterface jakarta.servlet.http.HttpSessionBindingListener.valueUnbound:(Ljakarta/servlet/http/HttpSessionBindingEvent;)V
         7: .line 297
      StackMap locals: jakarta.servlet.http.HttpSessionBindingEvent
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.HttpSessionImpl.contextImpl:Lorg/glassfish/grizzly/servlet/WebappContext;
            invokevirtual org.glassfish.grizzly.servlet.WebappContext.getEventListeners:()[Ljava/util/EventListener;
            astore 4 /* listeners */
        start local 4 // java.util.EventListener[] listeners
         8: .line 298
            aload 4 /* listeners */
            arraylength
            ifne 10
         9: .line 299
            return
        10: .line 301
      StackMap locals: java.util.EventListener[]
      StackMap stack:
            iconst_0
            istore 5 /* i */
        start local 5 // int i
        11: aload 4 /* listeners */
            arraylength
            istore 6 /* len */
        start local 6 // int len
        12: goto 28
        13: .line 302
      StackMap locals: int int
      StackMap stack:
            aload 4 /* listeners */
            iload 5 /* i */
            aaload
            instanceof jakarta.servlet.http.HttpSessionAttributeListener
            ifne 15
        14: .line 303
            goto 27
        15: .line 305
      StackMap locals:
      StackMap stack:
            aload 4 /* listeners */
            iload 5 /* i */
            aaload
            checkcast jakarta.servlet.http.HttpSessionAttributeListener
            astore 7 /* listener */
        start local 7 // jakarta.servlet.http.HttpSessionAttributeListener listener
        16: .line 307
            aload 3 /* event */
            ifnonnull 18
        17: .line 308
            new jakarta.servlet.http.HttpSessionBindingEvent
            dup
            aload 0 /* this */
            aload 1 /* key */
            aload 2 /* value */
            invokespecial jakarta.servlet.http.HttpSessionBindingEvent.<init>:(Ljakarta/servlet/http/HttpSession;Ljava/lang/String;Ljava/lang/Object;)V
            astore 3 /* event */
        18: .line 310
      StackMap locals: jakarta.servlet.http.HttpSessionAttributeListener
      StackMap stack:
            aload 7 /* listener */
            aload 3 /* event */
            invokeinterface jakarta.servlet.http.HttpSessionAttributeListener.attributeRemoved:(Ljakarta/servlet/http/HttpSessionBindingEvent;)V
        19: .line 311
            goto 27
      StackMap locals:
      StackMap stack: java.lang.Throwable
        20: astore 8 /* t */
        start local 8 // java.lang.Throwable t
        21: .line 312
            getstatic org.glassfish.grizzly.servlet.HttpSessionImpl.LOGGER:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.WARNING:Ljava/util/logging/Level;
            invokevirtual java.util.logging.Logger.isLoggable:(Ljava/util/logging/Level;)Z
            ifeq 27
        22: .line 313
            getstatic org.glassfish.grizzly.servlet.HttpSessionImpl.LOGGER:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.WARNING:Ljava/util/logging/Level;
            ldc "HttpSessionAttributeListener"
        23: .line 314
            aload 7 /* listener */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
        24: .line 313
            invokestatic org.glassfish.grizzly.localization.LogMessages.WARNING_GRIZZLY_HTTP_SERVLET_ATTRIBUTE_LISTENER_REMOVE_ERROR:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/String;
        25: .line 314
            aload 8 /* t */
        26: .line 313
            invokevirtual java.util.logging.Logger.log:(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/Throwable;)V
        end local 8 // java.lang.Throwable t
        end local 7 // jakarta.servlet.http.HttpSessionAttributeListener listener
        27: .line 301
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        28: iload 5 /* i */
            iload 6 /* len */
            if_icmplt 13
        end local 6 // int len
        end local 5 // int i
        29: .line 318
            return
        end local 4 // java.util.EventListener[] listeners
        end local 3 // jakarta.servlet.http.HttpSessionBindingEvent event
        end local 2 // java.lang.Object value
        end local 1 // java.lang.String key
        end local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   30     0       this  Lorg/glassfish/grizzly/servlet/HttpSessionImpl;
            0   30     1        key  Ljava/lang/String;
            1   30     2      value  Ljava/lang/Object;
            4   30     3      event  Ljakarta/servlet/http/HttpSessionBindingEvent;
            8   30     4  listeners  [Ljava/util/EventListener;
           11   29     5          i  I
           12   29     6        len  I
           16   27     7   listener  Ljakarta/servlet/http/HttpSessionAttributeListener;
           21   27     8          t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
          16    19      20  Class java.lang.Throwable
    MethodParameters:
      Name  Flags
      key   

  public void removeValue(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
        start local 1 // java.lang.String key
         0: .line 325
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual org.glassfish.grizzly.servlet.HttpSessionImpl.removeAttribute:(Ljava/lang/String;)V
         1: .line 326
            return
        end local 1 // java.lang.String key
        end local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/servlet/HttpSessionImpl;
            0    2     1   key  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      key   

  public synchronized void invalidate();
    descriptor: ()V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=8, args_size=1
        start local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
         0: .line 333
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.HttpSessionImpl.session:Lorg/glassfish/grizzly/http/server/Session;
            iconst_0
            invokevirtual org.glassfish.grizzly.http.server.Session.setValid:(Z)V
         1: .line 334
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.HttpSessionImpl.session:Lorg/glassfish/grizzly/http/server/Session;
            invokevirtual org.glassfish.grizzly.http.server.Session.attributes:()Ljava/util/concurrent/ConcurrentMap;
            invokeinterface java.util.concurrent.ConcurrentMap.clear:()V
         2: .line 336
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.HttpSessionImpl.contextImpl:Lorg/glassfish/grizzly/servlet/WebappContext;
            invokevirtual org.glassfish.grizzly.servlet.WebappContext.getEventListeners:()[Ljava/util/EventListener;
            astore 1 /* listeners */
        start local 1 // java.util.EventListener[] listeners
         3: .line 337
            aload 1 /* listeners */
            arraylength
            ifle 23
         4: .line 338
            new jakarta.servlet.http.HttpSessionEvent
            dup
            aload 0 /* this */
            invokespecial jakarta.servlet.http.HttpSessionEvent.<init>:(Ljakarta/servlet/http/HttpSession;)V
            astore 2 /* event */
        start local 2 // jakarta.servlet.http.HttpSessionEvent event
         5: .line 339
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         6: aload 1 /* listeners */
            arraylength
            istore 4 /* len */
        start local 4 // int len
         7: goto 22
         8: .line 340
      StackMap locals: org.glassfish.grizzly.servlet.HttpSessionImpl java.util.EventListener[] jakarta.servlet.http.HttpSessionEvent int int
      StackMap stack:
            aload 1 /* listeners */
            iload 3 /* i */
            aaload
            astore 5 /* listenerObj */
        start local 5 // java.lang.Object listenerObj
         9: .line 341
            aload 5 /* listenerObj */
            instanceof jakarta.servlet.http.HttpSessionListener
            ifne 11
        10: .line 342
            goto 21
        11: .line 344
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 5 /* listenerObj */
            checkcast jakarta.servlet.http.HttpSessionListener
            astore 6 /* listener */
        start local 6 // jakarta.servlet.http.HttpSessionListener listener
        12: .line 346
            aload 6 /* listener */
            aload 2 /* event */
            invokeinterface jakarta.servlet.http.HttpSessionListener.sessionDestroyed:(Ljakarta/servlet/http/HttpSessionEvent;)V
        13: .line 347
            goto 21
      StackMap locals: org.glassfish.grizzly.servlet.HttpSessionImpl java.util.EventListener[] jakarta.servlet.http.HttpSessionEvent int int java.lang.Object jakarta.servlet.http.HttpSessionListener
      StackMap stack: java.lang.Throwable
        14: astore 7 /* t */
        start local 7 // java.lang.Throwable t
        15: .line 348
            getstatic org.glassfish.grizzly.servlet.HttpSessionImpl.LOGGER:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.WARNING:Ljava/util/logging/Level;
            invokevirtual java.util.logging.Logger.isLoggable:(Ljava/util/logging/Level;)Z
            ifeq 21
        16: .line 349
            getstatic org.glassfish.grizzly.servlet.HttpSessionImpl.LOGGER:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.WARNING:Ljava/util/logging/Level;
            ldc "sessionDestroyed"
        17: .line 350
            ldc "HttpSessionListener"
            aload 6 /* listener */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
        18: .line 349
            invokestatic org.glassfish.grizzly.localization.LogMessages.WARNING_GRIZZLY_HTTP_SERVLET_CONTAINER_OBJECT_DESTROYED_ERROR:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/String;
        19: .line 350
            aload 7 /* t */
        20: .line 349
            invokevirtual java.util.logging.Logger.log:(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/Throwable;)V
        end local 7 // java.lang.Throwable t
        end local 6 // jakarta.servlet.http.HttpSessionListener listener
        end local 5 // java.lang.Object listenerObj
        21: .line 339
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        22: iload 3 /* i */
            iload 4 /* len */
            if_icmplt 8
        end local 4 // int len
        end local 3 // int i
        end local 2 // jakarta.servlet.http.HttpSessionEvent event
        23: .line 355
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.util.EventListener[] listeners
        end local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   24     0         this  Lorg/glassfish/grizzly/servlet/HttpSessionImpl;
            3   24     1    listeners  [Ljava/util/EventListener;
            5   23     2        event  Ljakarta/servlet/http/HttpSessionEvent;
            6   23     3            i  I
            7   23     4          len  I
            9   21     5  listenerObj  Ljava/lang/Object;
           12   21     6     listener  Ljakarta/servlet/http/HttpSessionListener;
           15   21     7            t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
          12    13      14  Class java.lang.Throwable

  public boolean isNew();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
         0: .line 362
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.HttpSessionImpl.session:Lorg/glassfish/grizzly/http/server/Session;
            invokevirtual org.glassfish.grizzly.http.server.Session.isValid:()Z
            ifne 2
         1: .line 363
            new java.lang.IllegalStateException
            dup
            ldc "The session was invalidated"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 366
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.HttpSessionImpl.session:Lorg/glassfish/grizzly/http/server/Session;
            invokevirtual org.glassfish.grizzly.http.server.Session.isNew:()Z
            ireturn
        end local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/glassfish/grizzly/servlet/HttpSessionImpl;

  protected void notifyNew();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=8, args_size=1
        start local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
         0: .line 373
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.HttpSessionImpl.contextImpl:Lorg/glassfish/grizzly/servlet/WebappContext;
            invokevirtual org.glassfish.grizzly.servlet.WebappContext.getEventListeners:()[Ljava/util/EventListener;
            astore 1 /* listeners */
        start local 1 // java.util.EventListener[] listeners
         1: .line 374
            aload 1 /* listeners */
            arraylength
            ifle 21
         2: .line 375
            new jakarta.servlet.http.HttpSessionEvent
            dup
            aload 0 /* this */
            invokespecial jakarta.servlet.http.HttpSessionEvent.<init>:(Ljakarta/servlet/http/HttpSession;)V
            astore 2 /* event */
        start local 2 // jakarta.servlet.http.HttpSessionEvent event
         3: .line 376
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         4: aload 1 /* listeners */
            arraylength
            istore 4 /* len */
        start local 4 // int len
         5: goto 20
         6: .line 377
      StackMap locals: org.glassfish.grizzly.servlet.HttpSessionImpl java.util.EventListener[] jakarta.servlet.http.HttpSessionEvent int int
      StackMap stack:
            aload 1 /* listeners */
            iload 3 /* i */
            aaload
            astore 5 /* listenerObj */
        start local 5 // java.lang.Object listenerObj
         7: .line 378
            aload 5 /* listenerObj */
            instanceof jakarta.servlet.http.HttpSessionListener
            ifne 9
         8: .line 379
            goto 19
         9: .line 381
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 5 /* listenerObj */
            checkcast jakarta.servlet.http.HttpSessionListener
            astore 6 /* listener */
        start local 6 // jakarta.servlet.http.HttpSessionListener listener
        10: .line 383
            aload 6 /* listener */
            aload 2 /* event */
            invokeinterface jakarta.servlet.http.HttpSessionListener.sessionCreated:(Ljakarta/servlet/http/HttpSessionEvent;)V
        11: .line 384
            goto 19
      StackMap locals: org.glassfish.grizzly.servlet.HttpSessionImpl java.util.EventListener[] jakarta.servlet.http.HttpSessionEvent int int java.lang.Object jakarta.servlet.http.HttpSessionListener
      StackMap stack: java.lang.Throwable
        12: astore 7 /* t */
        start local 7 // java.lang.Throwable t
        13: .line 385
            getstatic org.glassfish.grizzly.servlet.HttpSessionImpl.LOGGER:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.WARNING:Ljava/util/logging/Level;
            invokevirtual java.util.logging.Logger.isLoggable:(Ljava/util/logging/Level;)Z
            ifeq 19
        14: .line 386
            getstatic org.glassfish.grizzly.servlet.HttpSessionImpl.LOGGER:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.WARNING:Ljava/util/logging/Level;
            ldc "sessionCreated"
        15: .line 387
            ldc "HttpSessionListener"
            aload 6 /* listener */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
        16: .line 386
            invokestatic org.glassfish.grizzly.localization.LogMessages.WARNING_GRIZZLY_HTTP_SERVLET_CONTAINER_OBJECT_INITIALIZED_ERROR:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/String;
        17: .line 387
            aload 7 /* t */
        18: .line 386
            invokevirtual java.util.logging.Logger.log:(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/Throwable;)V
        end local 7 // java.lang.Throwable t
        end local 6 // jakarta.servlet.http.HttpSessionListener listener
        end local 5 // java.lang.Object listenerObj
        19: .line 376
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        20: iload 3 /* i */
            iload 4 /* len */
            if_icmplt 6
        end local 4 // int len
        end local 3 // int i
        end local 2 // jakarta.servlet.http.HttpSessionEvent event
        21: .line 392
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.util.EventListener[] listeners
        end local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   22     0         this  Lorg/glassfish/grizzly/servlet/HttpSessionImpl;
            1   22     1    listeners  [Ljava/util/EventListener;
            3   21     2        event  Ljakarta/servlet/http/HttpSessionEvent;
            4   21     3            i  I
            5   21     4          len  I
            7   19     5  listenerObj  Ljava/lang/Object;
           10   19     6     listener  Ljakarta/servlet/http/HttpSessionListener;
           13   19     7            t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
          10    11      12  Class java.lang.Throwable

  protected void notifyIdChanged(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=9, args_size=2
        start local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
        start local 1 // java.lang.String oldId
         0: .line 398
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.HttpSessionImpl.contextImpl:Lorg/glassfish/grizzly/servlet/WebappContext;
            invokevirtual org.glassfish.grizzly.servlet.WebappContext.getEventListeners:()[Ljava/util/EventListener;
            astore 2 /* listeners */
        start local 2 // java.util.EventListener[] listeners
         1: .line 399
            aload 2 /* listeners */
            arraylength
            ifle 21
         2: .line 400
            new jakarta.servlet.http.HttpSessionEvent
            dup
            aload 0 /* this */
            invokespecial jakarta.servlet.http.HttpSessionEvent.<init>:(Ljakarta/servlet/http/HttpSession;)V
            astore 3 /* event */
        start local 3 // jakarta.servlet.http.HttpSessionEvent event
         3: .line 401
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         4: aload 2 /* listeners */
            arraylength
            istore 5 /* len */
        start local 5 // int len
         5: goto 20
         6: .line 402
      StackMap locals: org.glassfish.grizzly.servlet.HttpSessionImpl java.lang.String java.util.EventListener[] jakarta.servlet.http.HttpSessionEvent int int
      StackMap stack:
            aload 2 /* listeners */
            iload 4 /* i */
            aaload
            astore 6 /* listenerObj */
        start local 6 // java.lang.Object listenerObj
         7: .line 403
            aload 6 /* listenerObj */
            instanceof jakarta.servlet.http.HttpSessionIdListener
            ifne 9
         8: .line 404
            goto 19
         9: .line 406
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 6 /* listenerObj */
            checkcast jakarta.servlet.http.HttpSessionIdListener
            astore 7 /* listener */
        start local 7 // jakarta.servlet.http.HttpSessionIdListener listener
        10: .line 408
            aload 7 /* listener */
            aload 3 /* event */
            aload 1 /* oldId */
            invokeinterface jakarta.servlet.http.HttpSessionIdListener.sessionIdChanged:(Ljakarta/servlet/http/HttpSessionEvent;Ljava/lang/String;)V
        11: .line 409
            goto 19
      StackMap locals: org.glassfish.grizzly.servlet.HttpSessionImpl java.lang.String java.util.EventListener[] jakarta.servlet.http.HttpSessionEvent int int java.lang.Object jakarta.servlet.http.HttpSessionIdListener
      StackMap stack: java.lang.Throwable
        12: astore 8 /* t */
        start local 8 // java.lang.Throwable t
        13: .line 410
            getstatic org.glassfish.grizzly.servlet.HttpSessionImpl.LOGGER:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.WARNING:Ljava/util/logging/Level;
            invokevirtual java.util.logging.Logger.isLoggable:(Ljava/util/logging/Level;)Z
            ifeq 19
        14: .line 411
            getstatic org.glassfish.grizzly.servlet.HttpSessionImpl.LOGGER:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.WARNING:Ljava/util/logging/Level;
            ldc "sessionCreated"
        15: .line 412
            ldc "HttpSessionListener"
            aload 7 /* listener */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
        16: .line 411
            invokestatic org.glassfish.grizzly.localization.LogMessages.WARNING_GRIZZLY_HTTP_SERVLET_CONTAINER_OBJECT_INITIALIZED_ERROR:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/String;
        17: .line 412
            aload 8 /* t */
        18: .line 411
            invokevirtual java.util.logging.Logger.log:(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/Throwable;)V
        end local 8 // java.lang.Throwable t
        end local 7 // jakarta.servlet.http.HttpSessionIdListener listener
        end local 6 // java.lang.Object listenerObj
        19: .line 401
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        20: iload 4 /* i */
            iload 5 /* len */
            if_icmplt 6
        end local 5 // int len
        end local 4 // int i
        end local 3 // jakarta.servlet.http.HttpSessionEvent event
        21: .line 417
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.util.EventListener[] listeners
        end local 1 // java.lang.String oldId
        end local 0 // org.glassfish.grizzly.servlet.HttpSessionImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   22     0         this  Lorg/glassfish/grizzly/servlet/HttpSessionImpl;
            0   22     1        oldId  Ljava/lang/String;
            1   22     2    listeners  [Ljava/util/EventListener;
            3   21     3        event  Ljakarta/servlet/http/HttpSessionEvent;
            4   21     4            i  I
            5   21     5          len  I
            7   19     6  listenerObj  Ljava/lang/Object;
           10   19     7     listener  Ljakarta/servlet/http/HttpSessionIdListener;
           13   19     8            t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
          10    11      12  Class java.lang.Throwable
    MethodParameters:
       Name  Flags
      oldId  final
}
SourceFile: "HttpSessionImpl.java"
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map