public abstract class org.eclipse.jetty.server.session.AbstractSessionCacheFactory implements org.eclipse.jetty.server.session.SessionCacheFactory
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.eclipse.jetty.server.session.AbstractSessionCacheFactory
  super_class: java.lang.Object
{
  int _evictionPolicy;
    descriptor: I
    flags: (0x0000) 

  boolean _saveOnInactiveEvict;
    descriptor: Z
    flags: (0x0000) 

  boolean _saveOnCreate;
    descriptor: Z
    flags: (0x0000) 

  boolean _removeUnloadableSessions;
    descriptor: Z
    flags: (0x0000) 

  boolean _flushOnResponseCommit;
    descriptor: Z
    flags: (0x0000) 

  boolean _invalidateOnShutdown;
    descriptor: Z
    flags: (0x0000) 

  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.AbstractSessionCacheFactory this
         0: .line 27
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.eclipse.jetty.server.session.AbstractSessionCacheFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/server/session/AbstractSessionCacheFactory;

  public abstract org.eclipse.jetty.server.session.SessionCache newSessionCache(org.eclipse.jetty.server.session.SessionHandler);
    descriptor: (Lorg/eclipse/jetty/server/session/SessionHandler;)Lorg/eclipse/jetty/server/session/SessionCache;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
         Name  Flags
      handler  

  public boolean isInvalidateOnShutdown();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.session.AbstractSessionCacheFactory this
         0: .line 40
            aload 0 /* this */
            getfield org.eclipse.jetty.server.session.AbstractSessionCacheFactory._invalidateOnShutdown:Z
            ireturn
        end local 0 // org.eclipse.jetty.server.session.AbstractSessionCacheFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/server/session/AbstractSessionCacheFactory;

  public void setInvalidateOnShutdown(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.server.session.AbstractSessionCacheFactory this
        start local 1 // boolean invalidateOnShutdown
         0: .line 45
            aload 0 /* this */
            iload 1 /* invalidateOnShutdown */
            putfield org.eclipse.jetty.server.session.AbstractSessionCacheFactory._invalidateOnShutdown:Z
         1: .line 46
            return
        end local 1 // boolean invalidateOnShutdown
        end local 0 // org.eclipse.jetty.server.session.AbstractSessionCacheFactory this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    2     0                  this  Lorg/eclipse/jetty/server/session/AbstractSessionCacheFactory;
            0    2     1  invalidateOnShutdown  Z
    MethodParameters:
                      Name  Flags
      invalidateOnShutdown  

  public boolean isFlushOnResponseCommit();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.session.AbstractSessionCacheFactory this
         0: .line 53
            aload 0 /* this */
            getfield org.eclipse.jetty.server.session.AbstractSessionCacheFactory._flushOnResponseCommit:Z
            ireturn
        end local 0 // org.eclipse.jetty.server.session.AbstractSessionCacheFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/server/session/AbstractSessionCacheFactory;

  public void setFlushOnResponseCommit(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.server.session.AbstractSessionCacheFactory this
        start local 1 // boolean flushOnResponseCommit
         0: .line 61
            aload 0 /* this */
            iload 1 /* flushOnResponseCommit */
            putfield org.eclipse.jetty.server.session.AbstractSessionCacheFactory._flushOnResponseCommit:Z
         1: .line 62
            return
        end local 1 // boolean flushOnResponseCommit
        end local 0 // org.eclipse.jetty.server.session.AbstractSessionCacheFactory this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    2     0                   this  Lorg/eclipse/jetty/server/session/AbstractSessionCacheFactory;
            0    2     1  flushOnResponseCommit  Z
    MethodParameters:
                       Name  Flags
      flushOnResponseCommit  

  public boolean isSaveOnCreate();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.session.AbstractSessionCacheFactory this
         0: .line 69
            aload 0 /* this */
            getfield org.eclipse.jetty.server.session.AbstractSessionCacheFactory._saveOnCreate:Z
            ireturn
        end local 0 // org.eclipse.jetty.server.session.AbstractSessionCacheFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/server/session/AbstractSessionCacheFactory;

  public void setSaveOnCreate(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.server.session.AbstractSessionCacheFactory this
        start local 1 // boolean saveOnCreate
         0: .line 77
            aload 0 /* this */
            iload 1 /* saveOnCreate */
            putfield org.eclipse.jetty.server.session.AbstractSessionCacheFactory._saveOnCreate:Z
         1: .line 78
            return
        end local 1 // boolean saveOnCreate
        end local 0 // org.eclipse.jetty.server.session.AbstractSessionCacheFactory this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lorg/eclipse/jetty/server/session/AbstractSessionCacheFactory;
            0    2     1  saveOnCreate  Z
    MethodParameters:
              Name  Flags
      saveOnCreate  

  public boolean isRemoveUnloadableSessions();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.session.AbstractSessionCacheFactory this
         0: .line 85
            aload 0 /* this */
            getfield org.eclipse.jetty.server.session.AbstractSessionCacheFactory._removeUnloadableSessions:Z
            ireturn
        end local 0 // org.eclipse.jetty.server.session.AbstractSessionCacheFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/server/session/AbstractSessionCacheFactory;

  public void setRemoveUnloadableSessions(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.server.session.AbstractSessionCacheFactory this
        start local 1 // boolean removeUnloadableSessions
         0: .line 93
            aload 0 /* this */
            iload 1 /* removeUnloadableSessions */
            putfield org.eclipse.jetty.server.session.AbstractSessionCacheFactory._removeUnloadableSessions:Z
         1: .line 94
            return
        end local 1 // boolean removeUnloadableSessions
        end local 0 // org.eclipse.jetty.server.session.AbstractSessionCacheFactory this
      LocalVariableTable:
        Start  End  Slot                      Name  Signature
            0    2     0                      this  Lorg/eclipse/jetty/server/session/AbstractSessionCacheFactory;
            0    2     1  removeUnloadableSessions  Z
    MethodParameters:
                          Name  Flags
      removeUnloadableSessions  

  public int getEvictionPolicy();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.session.AbstractSessionCacheFactory this
         0: .line 101
            aload 0 /* this */
            getfield org.eclipse.jetty.server.session.AbstractSessionCacheFactory._evictionPolicy:I
            ireturn
        end local 0 // org.eclipse.jetty.server.session.AbstractSessionCacheFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/server/session/AbstractSessionCacheFactory;

  public void setEvictionPolicy(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.server.session.AbstractSessionCacheFactory this
        start local 1 // int evictionPolicy
         0: .line 109
            aload 0 /* this */
            iload 1 /* evictionPolicy */
            putfield org.eclipse.jetty.server.session.AbstractSessionCacheFactory._evictionPolicy:I
         1: .line 110
            return
        end local 1 // int evictionPolicy
        end local 0 // org.eclipse.jetty.server.session.AbstractSessionCacheFactory this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lorg/eclipse/jetty/server/session/AbstractSessionCacheFactory;
            0    2     1  evictionPolicy  I
    MethodParameters:
                Name  Flags
      evictionPolicy  

  public boolean isSaveOnInactiveEvict();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.session.AbstractSessionCacheFactory this
         0: .line 117
            aload 0 /* this */
            getfield org.eclipse.jetty.server.session.AbstractSessionCacheFactory._saveOnInactiveEvict:Z
            ireturn
        end local 0 // org.eclipse.jetty.server.session.AbstractSessionCacheFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/server/session/AbstractSessionCacheFactory;

  public void setSaveOnInactiveEvict(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.server.session.AbstractSessionCacheFactory this
        start local 1 // boolean saveOnInactiveEvict
         0: .line 125
            aload 0 /* this */
            iload 1 /* saveOnInactiveEvict */
            putfield org.eclipse.jetty.server.session.AbstractSessionCacheFactory._saveOnInactiveEvict:Z
         1: .line 126
            return
        end local 1 // boolean saveOnInactiveEvict
        end local 0 // org.eclipse.jetty.server.session.AbstractSessionCacheFactory this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    2     0                 this  Lorg/eclipse/jetty/server/session/AbstractSessionCacheFactory;
            0    2     1  saveOnInactiveEvict  Z
    MethodParameters:
                     Name  Flags
      saveOnInactiveEvict  

  public org.eclipse.jetty.server.session.SessionCache getSessionCache(org.eclipse.jetty.server.session.SessionHandler);
    descriptor: (Lorg/eclipse/jetty/server/session/SessionHandler;)Lorg/eclipse/jetty/server/session/SessionCache;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.jetty.server.session.AbstractSessionCacheFactory this
        start local 1 // org.eclipse.jetty.server.session.SessionHandler handler
         0: .line 131
            aload 0 /* this */
            aload 1 /* handler */
            invokevirtual org.eclipse.jetty.server.session.AbstractSessionCacheFactory.newSessionCache:(Lorg/eclipse/jetty/server/session/SessionHandler;)Lorg/eclipse/jetty/server/session/SessionCache;
            astore 2 /* cache */
        start local 2 // org.eclipse.jetty.server.session.SessionCache cache
         1: .line 132
            aload 2 /* cache */
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.server.session.AbstractSessionCacheFactory.getEvictionPolicy:()I
            invokeinterface org.eclipse.jetty.server.session.SessionCache.setEvictionPolicy:(I)V
         2: .line 133
            aload 2 /* cache */
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.server.session.AbstractSessionCacheFactory.isSaveOnInactiveEvict:()Z
            invokeinterface org.eclipse.jetty.server.session.SessionCache.setSaveOnInactiveEviction:(Z)V
         3: .line 134
            aload 2 /* cache */
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.server.session.AbstractSessionCacheFactory.isSaveOnCreate:()Z
            invokeinterface org.eclipse.jetty.server.session.SessionCache.setSaveOnCreate:(Z)V
         4: .line 135
            aload 2 /* cache */
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.server.session.AbstractSessionCacheFactory.isRemoveUnloadableSessions:()Z
            invokeinterface org.eclipse.jetty.server.session.SessionCache.setRemoveUnloadableSessions:(Z)V
         5: .line 136
            aload 2 /* cache */
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.server.session.AbstractSessionCacheFactory.isFlushOnResponseCommit:()Z
            invokeinterface org.eclipse.jetty.server.session.SessionCache.setFlushOnResponseCommit:(Z)V
         6: .line 137
            aload 2 /* cache */
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.server.session.AbstractSessionCacheFactory.isInvalidateOnShutdown:()Z
            invokeinterface org.eclipse.jetty.server.session.SessionCache.setInvalidateOnShutdown:(Z)V
         7: .line 138
            aload 2 /* cache */
            areturn
        end local 2 // org.eclipse.jetty.server.session.SessionCache cache
        end local 1 // org.eclipse.jetty.server.session.SessionHandler handler
        end local 0 // org.eclipse.jetty.server.session.AbstractSessionCacheFactory this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lorg/eclipse/jetty/server/session/AbstractSessionCacheFactory;
            0    8     1  handler  Lorg/eclipse/jetty/server/session/SessionHandler;
            1    8     2    cache  Lorg/eclipse/jetty/server/session/SessionCache;
    MethodParameters:
         Name  Flags
      handler  
}
SourceFile: "AbstractSessionCacheFactory.java"