public class org.eclipse.jetty.server.session.NullSessionDataStore extends org.eclipse.jetty.server.session.AbstractSessionDataStore
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jetty.server.session.NullSessionDataStore
  super_class: org.eclipse.jetty.server.session.AbstractSessionDataStore
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.session.NullSessionDataStore this
         0: .line 32
            aload 0 /* this */
            invokespecial org.eclipse.jetty.server.session.AbstractSessionDataStore.<init>:()V
            return
        end local 0 // org.eclipse.jetty.server.session.NullSessionDataStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/server/session/NullSessionDataStore;

  public org.eclipse.jetty.server.session.SessionData doLoad(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/eclipse/jetty/server/session/SessionData;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.server.session.NullSessionDataStore this
        start local 1 // java.lang.String id
         0: .line 38
            aconst_null
            areturn
        end local 1 // java.lang.String id
        end local 0 // org.eclipse.jetty.server.session.NullSessionDataStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/server/session/NullSessionDataStore;
            0    1     1    id  Ljava/lang/String;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
      Name  Flags
      id    

  public org.eclipse.jetty.server.session.SessionData newSessionData(java.lang.String, long, long, long, long);
    descriptor: (Ljava/lang/String;JJJJ)Lorg/eclipse/jetty/server/session/SessionData;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=13, locals=10, args_size=6
        start local 0 // org.eclipse.jetty.server.session.NullSessionDataStore this
        start local 1 // java.lang.String id
        start local 2 // long created
        start local 4 // long accessed
        start local 6 // long lastAccessed
        start local 8 // long maxInactiveMs
         0: .line 44
            new org.eclipse.jetty.server.session.SessionData
            dup
            aload 1 /* id */
            aload 0 /* this */
            getfield org.eclipse.jetty.server.session.NullSessionDataStore._context:Lorg/eclipse/jetty/server/session/SessionContext;
            invokevirtual org.eclipse.jetty.server.session.SessionContext.getCanonicalContextPath:()Ljava/lang/String;
            aload 0 /* this */
            getfield org.eclipse.jetty.server.session.NullSessionDataStore._context:Lorg/eclipse/jetty/server/session/SessionContext;
            invokevirtual org.eclipse.jetty.server.session.SessionContext.getVhost:()Ljava/lang/String;
            lload 2 /* created */
            lload 4 /* accessed */
            lload 6 /* lastAccessed */
            lload 8 /* maxInactiveMs */
            invokespecial org.eclipse.jetty.server.session.SessionData.<init>:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;JJJJ)V
            areturn
        end local 8 // long maxInactiveMs
        end local 6 // long lastAccessed
        end local 4 // long accessed
        end local 2 // long created
        end local 1 // java.lang.String id
        end local 0 // org.eclipse.jetty.server.session.NullSessionDataStore this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/jetty/server/session/NullSessionDataStore;
            0    1     1             id  Ljava/lang/String;
            0    1     2        created  J
            0    1     4       accessed  J
            0    1     6   lastAccessed  J
            0    1     8  maxInactiveMs  J
    MethodParameters:
               Name  Flags
      id             
      created        
      accessed       
      lastAccessed   
      maxInactiveMs  

  public boolean delete(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.server.session.NullSessionDataStore this
        start local 1 // java.lang.String id
         0: .line 50
            iconst_1
            ireturn
        end local 1 // java.lang.String id
        end local 0 // org.eclipse.jetty.server.session.NullSessionDataStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/server/session/NullSessionDataStore;
            0    1     1    id  Ljava/lang/String;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
      Name  Flags
      id    

  public void doStore(java.lang.String, org.eclipse.jetty.server.session.SessionData, long);
    descriptor: (Ljava/lang/String;Lorg/eclipse/jetty/server/session/SessionData;J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=5, args_size=4
        start local 0 // org.eclipse.jetty.server.session.NullSessionDataStore this
        start local 1 // java.lang.String id
        start local 2 // org.eclipse.jetty.server.session.SessionData data
        start local 3 // long lastSaveTime
         0: .line 57
            return
        end local 3 // long lastSaveTime
        end local 2 // org.eclipse.jetty.server.session.SessionData data
        end local 1 // java.lang.String id
        end local 0 // org.eclipse.jetty.server.session.NullSessionDataStore this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/eclipse/jetty/server/session/NullSessionDataStore;
            0    1     1            id  Ljava/lang/String;
            0    1     2          data  Lorg/eclipse/jetty/server/session/SessionData;
            0    1     3  lastSaveTime  J
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
              Name  Flags
      id            
      data          
      lastSaveTime  

  public java.util.Set<java.lang.String> doGetExpired(java.util.Set<java.lang.String>);
    descriptor: (Ljava/util/Set;)Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.server.session.NullSessionDataStore this
        start local 1 // java.util.Set candidates
         0: .line 62
            aload 1 /* candidates */
            areturn
        end local 1 // java.util.Set candidates
        end local 0 // org.eclipse.jetty.server.session.NullSessionDataStore this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/jetty/server/session/NullSessionDataStore;
            0    1     1  candidates  Ljava/util/Set<Ljava/lang/String;>;
    Signature: (Ljava/util/Set<Ljava/lang/String;>;)Ljava/util/Set<Ljava/lang/String;>;
    MethodParameters:
            Name  Flags
      candidates  

  public boolean isPassivating();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.session.NullSessionDataStore this
         0: .line 69
            iconst_0
            ireturn
        end local 0 // org.eclipse.jetty.server.session.NullSessionDataStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/server/session/NullSessionDataStore;
    RuntimeVisibleAnnotations: 
      org.eclipse.jetty.util.annotation.ManagedAttribute(value = "does this store serialize sessions", readonly = true)

  public boolean exists(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.server.session.NullSessionDataStore this
        start local 1 // java.lang.String id
         0: .line 75
            iconst_0
            ireturn
        end local 1 // java.lang.String id
        end local 0 // org.eclipse.jetty.server.session.NullSessionDataStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/server/session/NullSessionDataStore;
            0    1     1    id  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      id    
}
SourceFile: "NullSessionDataStore.java"
    RuntimeVisibleAnnotations: 
      org.eclipse.jetty.util.annotation.ManagedObject()