public abstract class io.vertx.ext.web.sstore.AbstractSession implements io.vertx.ext.web.Session, io.vertx.ext.web.sstore.impl.SessionInternal
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: io.vertx.ext.web.sstore.AbstractSession
  super_class: java.lang.Object
{
  private static final char[] HEX;
    descriptor: [C
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private io.vertx.ext.auth.VertxContextPRNG prng;
    descriptor: Lio/vertx/ext/auth/VertxContextPRNG;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String id;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private long timeout;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private volatile java.util.Map<java.lang.String, java.lang.Object> data;
    descriptor: Ljava/util/Map;
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE
    Signature: Ljava/util/Map<Ljava/lang/String;Ljava/lang/Object;>;

  private long lastAccessed;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private int version;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

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

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

  private java.lang.String oldId;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private int crc;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 43
            ldc "0123456789abcdef"
            invokevirtual java.lang.String.toCharArray:()[C
            putstatic io.vertx.ext.web.sstore.AbstractSession.HEX:[C
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected void setId(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.sstore.AbstractSession this
        start local 1 // java.lang.String id
         0: .line 54
            aload 0 /* this */
            aload 1 /* id */
            putfield io.vertx.ext.web.sstore.AbstractSession.id:Ljava/lang/String;
         1: .line 55
            return
        end local 1 // java.lang.String id
        end local 0 // io.vertx.ext.web.sstore.AbstractSession this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/web/sstore/AbstractSession;
            0    2     1    id  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      id    

  protected void setTimeout(long);
    descriptor: (J)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.ext.web.sstore.AbstractSession this
        start local 1 // long timeout
         0: .line 58
            aload 0 /* this */
            lload 1 /* timeout */
            putfield io.vertx.ext.web.sstore.AbstractSession.timeout:J
         1: .line 59
            return
        end local 1 // long timeout
        end local 0 // io.vertx.ext.web.sstore.AbstractSession this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/ext/web/sstore/AbstractSession;
            0    2     1  timeout  J
    MethodParameters:
         Name  Flags
      timeout  

  protected void setData(java.util.Map<java.lang.String, java.lang.Object>);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.sstore.AbstractSession this
        start local 1 // java.util.Map data
         0: .line 62
            aload 1 /* data */
            ifnull 3
         1: .line 63
            aload 0 /* this */
            aload 1 /* data */
            putfield io.vertx.ext.web.sstore.AbstractSession.data:Ljava/util/Map;
         2: .line 64
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual io.vertx.ext.web.sstore.AbstractSession.checksum:()I
            putfield io.vertx.ext.web.sstore.AbstractSession.crc:I
         3: .line 66
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.util.Map data
        end local 0 // io.vertx.ext.web.sstore.AbstractSession this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/ext/web/sstore/AbstractSession;
            0    4     1  data  Ljava/util/Map<Ljava/lang/String;Ljava/lang/Object;>;
    Signature: (Ljava/util/Map<Ljava/lang/String;Ljava/lang/Object;>;)V
    MethodParameters:
      Name  Flags
      data  

  protected void setData(io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/core/json/JsonObject;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.sstore.AbstractSession this
        start local 1 // io.vertx.core.json.JsonObject data
         0: .line 69
            aload 1 /* data */
            ifnull 2
         1: .line 70
            aload 0 /* this */
            aload 1 /* data */
            invokevirtual io.vertx.core.json.JsonObject.getMap:()Ljava/util/Map;
            invokevirtual io.vertx.ext.web.sstore.AbstractSession.setData:(Ljava/util/Map;)V
         2: .line 72
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.json.JsonObject data
        end local 0 // io.vertx.ext.web.sstore.AbstractSession this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/ext/web/sstore/AbstractSession;
            0    3     1  data  Lio/vertx/core/json/JsonObject;
    MethodParameters:
      Name  Flags
      data  

  protected void setLastAccessed(long);
    descriptor: (J)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.ext.web.sstore.AbstractSession this
        start local 1 // long lastAccessed
         0: .line 75
            aload 0 /* this */
            lload 1 /* lastAccessed */
            putfield io.vertx.ext.web.sstore.AbstractSession.lastAccessed:J
         1: .line 76
            return
        end local 1 // long lastAccessed
        end local 0 // io.vertx.ext.web.sstore.AbstractSession this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lio/vertx/ext/web/sstore/AbstractSession;
            0    2     1  lastAccessed  J
    MethodParameters:
              Name  Flags
      lastAccessed  

  protected void setVersion(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.sstore.AbstractSession this
        start local 1 // int version
         0: .line 79
            aload 0 /* this */
            iload 1 /* version */
            putfield io.vertx.ext.web.sstore.AbstractSession.version:I
         1: .line 80
            return
        end local 1 // int version
        end local 0 // io.vertx.ext.web.sstore.AbstractSession this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/ext/web/sstore/AbstractSession;
            0    2     1  version  I
    MethodParameters:
         Name  Flags
      version  

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.sstore.AbstractSession this
         0: .line 93
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 94
            return
        end local 0 // io.vertx.ext.web.sstore.AbstractSession this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/web/sstore/AbstractSession;

  public void <init>(io.vertx.ext.auth.VertxContextPRNG);
    descriptor: (Lio/vertx/ext/auth/VertxContextPRNG;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.sstore.AbstractSession this
        start local 1 // io.vertx.ext.auth.VertxContextPRNG random
         0: .line 96
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 97
            aload 0 /* this */
            aload 1 /* random */
            putfield io.vertx.ext.web.sstore.AbstractSession.prng:Lio/vertx/ext/auth/VertxContextPRNG;
         2: .line 98
            return
        end local 1 // io.vertx.ext.auth.VertxContextPRNG random
        end local 0 // io.vertx.ext.web.sstore.AbstractSession this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lio/vertx/ext/web/sstore/AbstractSession;
            0    3     1  random  Lio/vertx/ext/auth/VertxContextPRNG;
    MethodParameters:
        Name  Flags
      random  

  public void <init>(io.vertx.ext.auth.VertxContextPRNG, long, int);
    descriptor: (Lio/vertx/ext/auth/VertxContextPRNG;JI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // io.vertx.ext.web.sstore.AbstractSession this
        start local 1 // io.vertx.ext.auth.VertxContextPRNG random
        start local 2 // long timeout
        start local 4 // int length
         0: .line 100
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 101
            aload 0 /* this */
            aload 1 /* random */
            putfield io.vertx.ext.web.sstore.AbstractSession.prng:Lio/vertx/ext/auth/VertxContextPRNG;
         2: .line 102
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.AbstractSession.prng:Lio/vertx/ext/auth/VertxContextPRNG;
            iload 4 /* length */
            invokestatic io.vertx.ext.web.sstore.AbstractSession.generateId:(Lio/vertx/ext/auth/VertxContextPRNG;I)Ljava/lang/String;
            putfield io.vertx.ext.web.sstore.AbstractSession.id:Ljava/lang/String;
         3: .line 103
            aload 0 /* this */
            lload 2 /* timeout */
            putfield io.vertx.ext.web.sstore.AbstractSession.timeout:J
         4: .line 104
            aload 0 /* this */
            invokestatic java.lang.System.currentTimeMillis:()J
            putfield io.vertx.ext.web.sstore.AbstractSession.lastAccessed:J
         5: .line 105
            return
        end local 4 // int length
        end local 2 // long timeout
        end local 1 // io.vertx.ext.auth.VertxContextPRNG random
        end local 0 // io.vertx.ext.web.sstore.AbstractSession this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lio/vertx/ext/web/sstore/AbstractSession;
            0    6     1   random  Lio/vertx/ext/auth/VertxContextPRNG;
            0    6     2  timeout  J
            0    6     4   length  I
    MethodParameters:
         Name  Flags
      random   
      timeout  
      length   

  public void setPRNG(io.vertx.ext.auth.VertxContextPRNG);
    descriptor: (Lio/vertx/ext/auth/VertxContextPRNG;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.sstore.AbstractSession this
        start local 1 // io.vertx.ext.auth.VertxContextPRNG prng
         0: .line 108
            aload 0 /* this */
            aload 1 /* prng */
            putfield io.vertx.ext.web.sstore.AbstractSession.prng:Lio/vertx/ext/auth/VertxContextPRNG;
         1: .line 109
            return
        end local 1 // io.vertx.ext.auth.VertxContextPRNG prng
        end local 0 // io.vertx.ext.web.sstore.AbstractSession this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/web/sstore/AbstractSession;
            0    2     1  prng  Lio/vertx/ext/auth/VertxContextPRNG;
    MethodParameters:
      Name  Flags
      prng  

  public void flushed(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.sstore.AbstractSession this
        start local 1 // boolean skipCrc
         0: .line 113
            aload 0 /* this */
            iconst_0
            putfield io.vertx.ext.web.sstore.AbstractSession.renewed:Z
         1: .line 114
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.AbstractSession.oldId:Ljava/lang/String;
            ifnull 5
         2: .line 115
            iload 1 /* skipCrc */
            ifne 4
         3: .line 116
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual io.vertx.ext.web.sstore.AbstractSession.checksum:()I
            putfield io.vertx.ext.web.sstore.AbstractSession.crc:I
         4: .line 118
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield io.vertx.ext.web.sstore.AbstractSession.oldId:Ljava/lang/String;
         5: .line 120
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean skipCrc
        end local 0 // io.vertx.ext.web.sstore.AbstractSession this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lio/vertx/ext/web/sstore/AbstractSession;
            0    6     1  skipCrc  Z
    MethodParameters:
         Name  Flags
      skipCrc  

  public java.lang.String id();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.sstore.AbstractSession this
         0: .line 124
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.AbstractSession.id:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.ext.web.sstore.AbstractSession this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/sstore/AbstractSession;

  public io.vertx.ext.web.Session regenerateId();
    descriptor: ()Lio/vertx/ext/web/Session;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.sstore.AbstractSession this
         0: .line 129
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.AbstractSession.oldId:Ljava/lang/String;
            ifnonnull 2
         1: .line 132
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.AbstractSession.id:Ljava/lang/String;
            putfield io.vertx.ext.web.sstore.AbstractSession.oldId:Ljava/lang/String;
         2: .line 135
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.AbstractSession.prng:Lio/vertx/ext/auth/VertxContextPRNG;
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.AbstractSession.oldId:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            iconst_2
            idiv
            invokestatic io.vertx.ext.web.sstore.AbstractSession.generateId:(Lio/vertx/ext/auth/VertxContextPRNG;I)Ljava/lang/String;
            putfield io.vertx.ext.web.sstore.AbstractSession.id:Ljava/lang/String;
         3: .line 136
            aload 0 /* this */
            iconst_1
            putfield io.vertx.ext.web.sstore.AbstractSession.renewed:Z
         4: .line 137
            aload 0 /* this */
            areturn
        end local 0 // io.vertx.ext.web.sstore.AbstractSession this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/ext/web/sstore/AbstractSession;

  public long timeout();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.sstore.AbstractSession this
         0: .line 142
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.AbstractSession.timeout:J
            lreturn
        end local 0 // io.vertx.ext.web.sstore.AbstractSession this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/sstore/AbstractSession;

  public <T> T get(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.ext.web.sstore.AbstractSession this
        start local 1 // java.lang.String key
         0: .line 148
            aload 0 /* this */
            invokevirtual io.vertx.ext.web.sstore.AbstractSession.isEmpty:()Z
            ifeq 2
         1: .line 149
            aconst_null
            areturn
         2: .line 151
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.ext.web.sstore.AbstractSession.data:()Ljava/util/Map;
            aload 1 /* key */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 2 /* obj */
        start local 2 // java.lang.Object obj
         3: .line 152
            aload 2 /* obj */
            areturn
        end local 2 // java.lang.Object obj
        end local 1 // java.lang.String key
        end local 0 // io.vertx.ext.web.sstore.AbstractSession this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/ext/web/sstore/AbstractSession;
            0    4     1   key  Ljava/lang/String;
            3    4     2   obj  Ljava/lang/Object;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/String;)TT;
    MethodParameters:
      Name  Flags
      key   

  public io.vertx.ext.web.Session put(java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/ext/web/Session;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.vertx.ext.web.sstore.AbstractSession this
        start local 1 // java.lang.String key
        start local 2 // java.lang.Object obj
         0: .line 157
            aload 0 /* this */
            invokevirtual io.vertx.ext.web.sstore.AbstractSession.data:()Ljava/util/Map;
            astore 3 /* data */
        start local 3 // java.util.Map data
         1: .line 159
            aload 2 /* obj */
            ifnonnull 4
         2: .line 160
            aload 3 /* data */
            aload 1 /* key */
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         3: .line 161
            goto 5
         4: .line 162
      StackMap locals: java.util.Map
      StackMap stack:
            aload 3 /* data */
            aload 1 /* key */
            aload 2 /* obj */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         5: .line 164
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 3 // java.util.Map data
        end local 2 // java.lang.Object obj
        end local 1 // java.lang.String key
        end local 0 // io.vertx.ext.web.sstore.AbstractSession this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/vertx/ext/web/sstore/AbstractSession;
            0    6     1   key  Ljava/lang/String;
            0    6     2   obj  Ljava/lang/Object;
            1    6     3  data  Ljava/util/Map<Ljava/lang/String;Ljava/lang/Object;>;
    MethodParameters:
      Name  Flags
      key   
      obj   

  public io.vertx.ext.web.Session putIfAbsent(java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/ext/web/Session;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.sstore.AbstractSession this
        start local 1 // java.lang.String key
        start local 2 // java.lang.Object obj
         0: .line 169
            aload 0 /* this */
            invokevirtual io.vertx.ext.web.sstore.AbstractSession.data:()Ljava/util/Map;
         1: .line 170
            aload 1 /* key */
            aload 2 /* obj */
            invokeinterface java.util.Map.putIfAbsent:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         2: .line 171
            aload 0 /* this */
            areturn
        end local 2 // java.lang.Object obj
        end local 1 // java.lang.String key
        end local 0 // io.vertx.ext.web.sstore.AbstractSession this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/ext/web/sstore/AbstractSession;
            0    3     1   key  Ljava/lang/String;
            0    3     2   obj  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      key   
      obj   

  public io.vertx.ext.web.Session computeIfAbsent(java.lang.String, java.util.function.Function<java.lang.String, java.lang.Object>);
    descriptor: (Ljava/lang/String;Ljava/util/function/Function;)Lio/vertx/ext/web/Session;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.sstore.AbstractSession this
        start local 1 // java.lang.String key
        start local 2 // java.util.function.Function mappingFunction
         0: .line 176
            aload 0 /* this */
            invokevirtual io.vertx.ext.web.sstore.AbstractSession.data:()Ljava/util/Map;
         1: .line 177
            aload 1 /* key */
            aload 2 /* mappingFunction */
            invokeinterface java.util.Map.computeIfAbsent:(Ljava/lang/Object;Ljava/util/function/Function;)Ljava/lang/Object;
            pop
         2: .line 178
            aload 0 /* this */
            areturn
        end local 2 // java.util.function.Function mappingFunction
        end local 1 // java.lang.String key
        end local 0 // io.vertx.ext.web.sstore.AbstractSession this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    3     0             this  Lio/vertx/ext/web/sstore/AbstractSession;
            0    3     1              key  Ljava/lang/String;
            0    3     2  mappingFunction  Ljava/util/function/Function<Ljava/lang/String;Ljava/lang/Object;>;
    Signature: (Ljava/lang/String;Ljava/util/function/Function<Ljava/lang/String;Ljava/lang/Object;>;)Lio/vertx/ext/web/Session;
    MethodParameters:
                 Name  Flags
      key              
      mappingFunction  

  public <T> T remove(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.ext.web.sstore.AbstractSession this
        start local 1 // java.lang.String key
         0: .line 184
            aload 0 /* this */
            invokevirtual io.vertx.ext.web.sstore.AbstractSession.isEmpty:()Z
            ifeq 2
         1: .line 185
            aconst_null
            areturn
         2: .line 187
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.ext.web.sstore.AbstractSession.data:()Ljava/util/Map;
            aload 1 /* key */
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 2 /* obj */
        start local 2 // java.lang.Object obj
         3: .line 188
            aload 2 /* obj */
            areturn
        end local 2 // java.lang.Object obj
        end local 1 // java.lang.String key
        end local 0 // io.vertx.ext.web.sstore.AbstractSession this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/ext/web/sstore/AbstractSession;
            0    4     1   key  Ljava/lang/String;
            3    4     2   obj  Ljava/lang/Object;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/String;)TT;
    MethodParameters:
      Name  Flags
      key   

  public java.util.Map<java.lang.String, java.lang.Object> data();
    descriptor: ()Ljava/util/Map;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // io.vertx.ext.web.sstore.AbstractSession this
         0: .line 193
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.AbstractSession.data:Ljava/util/Map;
            ifnonnull 11
         1: .line 194
            aload 0 /* this */
            dup
            astore 1
            monitorenter
         2: .line 196
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.AbstractSession.data:Ljava/util/Map;
            ifnonnull 7
         3: .line 197
            aload 0 /* this */
            new java.util.concurrent.ConcurrentHashMap
            dup
            invokespecial java.util.concurrent.ConcurrentHashMap.<init>:()V
            putfield io.vertx.ext.web.sstore.AbstractSession.data:Ljava/util/Map;
         4: .line 198
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.AbstractSession.destroyed:Z
            ifeq 7
         5: .line 200
            aload 0 /* this */
            invokevirtual io.vertx.ext.web.sstore.AbstractSession.regenerateId:()Lio/vertx/ext/web/Session;
            pop
         6: .line 201
            aload 0 /* this */
            iconst_0
            putfield io.vertx.ext.web.sstore.AbstractSession.destroyed:Z
         7: .line 194
      StackMap locals: io.vertx.ext.web.sstore.AbstractSession
      StackMap stack:
            aload 1
            monitorexit
         8: goto 11
      StackMap locals:
      StackMap stack: java.lang.Throwable
         9: aload 1
            monitorexit
        10: athrow
        11: .line 206
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.AbstractSession.data:Ljava/util/Map;
            areturn
        end local 0 // io.vertx.ext.web.sstore.AbstractSession this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lio/vertx/ext/web/sstore/AbstractSession;
      Exception table:
        from    to  target  type
           2     8       9  any
           9    10       9  any
    Signature: ()Ljava/util/Map<Ljava/lang/String;Ljava/lang/Object;>;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.sstore.AbstractSession this
         0: .line 211
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.AbstractSession.data:Ljava/util/Map;
            ifnull 1
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.AbstractSession.data:Ljava/util/Map;
            invokeinterface java.util.Map.size:()I
            ifeq 1
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
        end local 0 // io.vertx.ext.web.sstore.AbstractSession this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/web/sstore/AbstractSession;

  public long lastAccessed();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.sstore.AbstractSession this
         0: .line 216
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.AbstractSession.lastAccessed:J
            lreturn
        end local 0 // io.vertx.ext.web.sstore.AbstractSession this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/sstore/AbstractSession;

  public void setAccessed();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.sstore.AbstractSession this
         0: .line 221
            aload 0 /* this */
            invokestatic java.lang.System.currentTimeMillis:()J
            putfield io.vertx.ext.web.sstore.AbstractSession.lastAccessed:J
         1: .line 222
            return
        end local 0 // io.vertx.ext.web.sstore.AbstractSession this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/web/sstore/AbstractSession;

  public void destroy();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.ext.web.sstore.AbstractSession this
         0: .line 226
            aload 0 /* this */
            dup
            astore 1
            monitorenter
         1: .line 227
            aload 0 /* this */
            iconst_1
            putfield io.vertx.ext.web.sstore.AbstractSession.destroyed:Z
         2: .line 228
            aload 0 /* this */
            aconst_null
            putfield io.vertx.ext.web.sstore.AbstractSession.data:Ljava/util/Map;
         3: .line 226
            aload 1
            monitorexit
         4: goto 7
      StackMap locals: io.vertx.ext.web.sstore.AbstractSession io.vertx.ext.web.sstore.AbstractSession
      StackMap stack: java.lang.Throwable
         5: aload 1
            monitorexit
         6: athrow
         7: .line 230
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.ext.web.sstore.AbstractSession this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lio/vertx/ext/web/sstore/AbstractSession;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any

  public boolean isDestroyed();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.sstore.AbstractSession this
         0: .line 234
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.AbstractSession.destroyed:Z
            ireturn
        end local 0 // io.vertx.ext.web.sstore.AbstractSession this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/sstore/AbstractSession;

  public boolean isRegenerated();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.sstore.AbstractSession this
         0: .line 239
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.AbstractSession.renewed:Z
            ireturn
        end local 0 // io.vertx.ext.web.sstore.AbstractSession this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/sstore/AbstractSession;

  public java.lang.String oldId();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.sstore.AbstractSession this
         0: .line 244
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.AbstractSession.oldId:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.ext.web.sstore.AbstractSession this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/sstore/AbstractSession;

  public int version();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.sstore.AbstractSession this
         0: .line 248
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.AbstractSession.version:I
            ireturn
        end local 0 // io.vertx.ext.web.sstore.AbstractSession this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/sstore/AbstractSession;

  public void incrementVersion();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // io.vertx.ext.web.sstore.AbstractSession this
         0: .line 252
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.AbstractSession.crc:I
            istore 1 /* old */
        start local 1 // int old
         1: .line 254
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual io.vertx.ext.web.sstore.AbstractSession.checksum:()I
            putfield io.vertx.ext.web.sstore.AbstractSession.crc:I
         2: .line 256
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.AbstractSession.crc:I
            iload 1 /* old */
            if_icmpeq 4
         3: .line 257
            aload 0 /* this */
            dup
            getfield io.vertx.ext.web.sstore.AbstractSession.version:I
            iconst_1
            iadd
            putfield io.vertx.ext.web.sstore.AbstractSession.version:I
         4: .line 259
      StackMap locals: int
      StackMap stack:
            return
        end local 1 // int old
        end local 0 // io.vertx.ext.web.sstore.AbstractSession this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/ext/web/sstore/AbstractSession;
            1    5     1   old  I

  private static java.lang.String generateId(io.vertx.ext.auth.VertxContextPRNG, int);
    descriptor: (Lio/vertx/ext/auth/VertxContextPRNG;I)Ljava/lang/String;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // io.vertx.ext.auth.VertxContextPRNG rng
        start local 1 // int length
         0: .line 262
            iload 1 /* length */
            newarray 8
            astore 2 /* bytes */
        start local 2 // byte[] bytes
         1: .line 263
            aload 0 /* rng */
            aload 2 /* bytes */
            invokeinterface io.vertx.ext.auth.VertxContextPRNG.nextBytes:([B)V
         2: .line 265
            iload 1 /* length */
            iconst_2
            imul
            newarray 5
            astore 3 /* hex */
        start local 3 // char[] hex
         3: .line 266
            iconst_0
            istore 4 /* j */
        start local 4 // int j
         4: goto 9
         5: .line 267
      StackMap locals: byte[] char[] int
      StackMap stack:
            aload 2 /* bytes */
            iload 4 /* j */
            baload
            sipush 255
            iand
            istore 5 /* v */
        start local 5 // int v
         6: .line 268
            aload 3 /* hex */
            iload 4 /* j */
            iconst_2
            imul
            getstatic io.vertx.ext.web.sstore.AbstractSession.HEX:[C
            iload 5 /* v */
            iconst_4
            iushr
            caload
            castore
         7: .line 269
            aload 3 /* hex */
            iload 4 /* j */
            iconst_2
            imul
            iconst_1
            iadd
            getstatic io.vertx.ext.web.sstore.AbstractSession.HEX:[C
            iload 5 /* v */
            bipush 15
            iand
            caload
            castore
        end local 5 // int v
         8: .line 266
            iinc 4 /* j */ 1
      StackMap locals:
      StackMap stack:
         9: iload 4 /* j */
            iload 1 /* length */
            if_icmplt 5
        end local 4 // int j
        10: .line 272
            new java.lang.String
            dup
            aload 3 /* hex */
            invokespecial java.lang.String.<init>:([C)V
            areturn
        end local 3 // char[] hex
        end local 2 // byte[] bytes
        end local 1 // int length
        end local 0 // io.vertx.ext.auth.VertxContextPRNG rng
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   11     0     rng  Lio/vertx/ext/auth/VertxContextPRNG;
            0   11     1  length  I
            1   11     2   bytes  [B
            3   11     3     hex  [C
            4   10     4       j  I
            6    8     5       v  I
    MethodParameters:
        Name  Flags
      rng     
      length  

  protected int crc();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.sstore.AbstractSession this
         0: .line 276
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.AbstractSession.crc:I
            ireturn
        end local 0 // io.vertx.ext.web.sstore.AbstractSession this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/sstore/AbstractSession;

  protected int checksum();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=6, args_size=1
        start local 0 // io.vertx.ext.web.sstore.AbstractSession this
         0: .line 280
            aload 0 /* this */
            invokevirtual io.vertx.ext.web.sstore.AbstractSession.isEmpty:()Z
            ifeq 2
         1: .line 281
            iconst_0
            ireturn
         2: .line 283
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 1 /* result */
        start local 1 // int result
         3: .line 285
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.AbstractSession.data: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: io.vertx.ext.web.sstore.AbstractSession int top java.util.Iterator
      StackMap stack:
         4: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 2 /* kv */
        start local 2 // java.util.Map$Entry kv
         5: .line 286
            aload 2 /* kv */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 4 /* key */
        start local 4 // java.lang.String key
         6: .line 287
            bipush 31
            iload 1 /* result */
            imul
            aload 4 /* key */
            invokevirtual java.lang.String.hashCode:()I
            iadd
            istore 1 /* result */
         7: .line 288
            aload 2 /* kv */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            astore 5 /* value */
        start local 5 // java.lang.Object value
         8: .line 289
            aload 5 /* value */
            ifnull 10
         9: .line 290
            bipush 31
            iload 1 /* result */
            imul
            aload 5 /* value */
            invokevirtual java.lang.Object.hashCode:()I
            iadd
            istore 1 /* result */
        end local 5 // java.lang.Object value
        end local 4 // java.lang.String key
        end local 2 // java.util.Map$Entry kv
        10: .line 285
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
        11: .line 294
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // io.vertx.ext.web.sstore.AbstractSession this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0    this  Lio/vertx/ext/web/sstore/AbstractSession;
            3   12     1  result  I
            5   10     2      kv  Ljava/util/Map$Entry<Ljava/lang/String;Ljava/lang/Object;>;
            6   10     4     key  Ljava/lang/String;
            8   10     5   value  Ljava/lang/Object;
}
SourceFile: "AbstractSession.java"
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map