public class io.ebean.cache.ServerCacheOptions
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.ebean.cache.ServerCacheOptions
  super_class: java.lang.Object
{
  private int maxSize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

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

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

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

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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebean.cache.ServerCacheOptions this
         0: .line 20
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 22
            return
        end local 0 // io.ebean.cache.ServerCacheOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/ebean/cache/ServerCacheOptions;

  public void <init>(io.ebean.annotation.CacheBeanTuning);
    descriptor: (Lio/ebean/annotation/CacheBeanTuning;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.ebean.cache.ServerCacheOptions this
        start local 1 // io.ebean.annotation.CacheBeanTuning tuning
         0: .line 27
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 28
            aload 0 /* this */
            aload 1 /* tuning */
            invokeinterface io.ebean.annotation.CacheBeanTuning.maxSize:()I
            putfield io.ebean.cache.ServerCacheOptions.maxSize:I
         2: .line 29
            aload 0 /* this */
            aload 1 /* tuning */
            invokeinterface io.ebean.annotation.CacheBeanTuning.maxIdleSecs:()I
            putfield io.ebean.cache.ServerCacheOptions.maxIdleSecs:I
         3: .line 30
            aload 0 /* this */
            aload 1 /* tuning */
            invokeinterface io.ebean.annotation.CacheBeanTuning.maxSecsToLive:()I
            putfield io.ebean.cache.ServerCacheOptions.maxSecsToLive:I
         4: .line 31
            aload 0 /* this */
            aload 1 /* tuning */
            invokeinterface io.ebean.annotation.CacheBeanTuning.trimFrequency:()I
            putfield io.ebean.cache.ServerCacheOptions.trimFrequency:I
         5: .line 32
            return
        end local 1 // io.ebean.annotation.CacheBeanTuning tuning
        end local 0 // io.ebean.cache.ServerCacheOptions this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lio/ebean/cache/ServerCacheOptions;
            0    6     1  tuning  Lio/ebean/annotation/CacheBeanTuning;
    MethodParameters:
        Name  Flags
      tuning  

  public void <init>(io.ebean.annotation.CacheQueryTuning);
    descriptor: (Lio/ebean/annotation/CacheQueryTuning;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.ebean.cache.ServerCacheOptions this
        start local 1 // io.ebean.annotation.CacheQueryTuning cacheTuning
         0: .line 37
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 38
            aload 0 /* this */
            aload 1 /* cacheTuning */
            invokeinterface io.ebean.annotation.CacheQueryTuning.maxSize:()I
            putfield io.ebean.cache.ServerCacheOptions.maxSize:I
         2: .line 39
            aload 0 /* this */
            aload 1 /* cacheTuning */
            invokeinterface io.ebean.annotation.CacheQueryTuning.maxIdleSecs:()I
            putfield io.ebean.cache.ServerCacheOptions.maxIdleSecs:I
         3: .line 40
            aload 0 /* this */
            aload 1 /* cacheTuning */
            invokeinterface io.ebean.annotation.CacheQueryTuning.maxSecsToLive:()I
            putfield io.ebean.cache.ServerCacheOptions.maxSecsToLive:I
         4: .line 41
            aload 0 /* this */
            aload 1 /* cacheTuning */
            invokeinterface io.ebean.annotation.CacheQueryTuning.trimFrequency:()I
            putfield io.ebean.cache.ServerCacheOptions.trimFrequency:I
         5: .line 42
            return
        end local 1 // io.ebean.annotation.CacheQueryTuning cacheTuning
        end local 0 // io.ebean.cache.ServerCacheOptions this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lio/ebean/cache/ServerCacheOptions;
            0    6     1  cacheTuning  Lio/ebean/annotation/CacheQueryTuning;
    MethodParameters:
             Name  Flags
      cacheTuning  

  public void <init>(boolean, io.ebean.annotation.CacheBeanTuning);
    descriptor: (ZLio/ebean/annotation/CacheBeanTuning;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.ebean.cache.ServerCacheOptions this
        start local 1 // boolean nearCache
        start local 2 // io.ebean.annotation.CacheBeanTuning tuning
         0: .line 48
            aload 0 /* this */
            aload 2 /* tuning */
            invokespecial io.ebean.cache.ServerCacheOptions.<init>:(Lio/ebean/annotation/CacheBeanTuning;)V
         1: .line 49
            aload 0 /* this */
            iload 1 /* nearCache */
            putfield io.ebean.cache.ServerCacheOptions.nearCache:Z
         2: .line 50
            return
        end local 2 // io.ebean.annotation.CacheBeanTuning tuning
        end local 1 // boolean nearCache
        end local 0 // io.ebean.cache.ServerCacheOptions this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lio/ebean/cache/ServerCacheOptions;
            0    3     1  nearCache  Z
            0    3     2     tuning  Lio/ebean/annotation/CacheBeanTuning;
    MethodParameters:
           Name  Flags
      nearCache  
      tuning     

  public io.ebean.cache.ServerCacheOptions applyDefaults(io.ebean.cache.ServerCacheOptions);
    descriptor: (Lio/ebean/cache/ServerCacheOptions;)Lio/ebean/cache/ServerCacheOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.ebean.cache.ServerCacheOptions this
        start local 1 // io.ebean.cache.ServerCacheOptions defaults
         0: .line 57
            aload 0 /* this */
            getfield io.ebean.cache.ServerCacheOptions.maxSize:I
            ifne 2
         1: .line 58
            aload 0 /* this */
            aload 1 /* defaults */
            invokevirtual io.ebean.cache.ServerCacheOptions.getMaxSize:()I
            putfield io.ebean.cache.ServerCacheOptions.maxSize:I
         2: .line 60
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.ebean.cache.ServerCacheOptions.maxIdleSecs:I
            ifne 4
         3: .line 61
            aload 0 /* this */
            aload 1 /* defaults */
            invokevirtual io.ebean.cache.ServerCacheOptions.getMaxIdleSecs:()I
            putfield io.ebean.cache.ServerCacheOptions.maxIdleSecs:I
         4: .line 63
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.ebean.cache.ServerCacheOptions.maxSecsToLive:I
            ifne 6
         5: .line 64
            aload 0 /* this */
            aload 1 /* defaults */
            invokevirtual io.ebean.cache.ServerCacheOptions.getMaxSecsToLive:()I
            putfield io.ebean.cache.ServerCacheOptions.maxSecsToLive:I
         6: .line 66
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.ebean.cache.ServerCacheOptions.trimFrequency:I
            ifne 8
         7: .line 67
            aload 0 /* this */
            aload 1 /* defaults */
            invokevirtual io.ebean.cache.ServerCacheOptions.getTrimFrequency:()I
            putfield io.ebean.cache.ServerCacheOptions.trimFrequency:I
         8: .line 69
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // io.ebean.cache.ServerCacheOptions defaults
        end local 0 // io.ebean.cache.ServerCacheOptions this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Lio/ebean/cache/ServerCacheOptions;
            0    9     1  defaults  Lio/ebean/cache/ServerCacheOptions;
    MethodParameters:
          Name  Flags
      defaults  

  public io.ebean.cache.ServerCacheOptions copy();
    descriptor: ()Lio/ebean/cache/ServerCacheOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.ebean.cache.ServerCacheOptions this
         0: .line 77
            new io.ebean.cache.ServerCacheOptions
            dup
            invokespecial io.ebean.cache.ServerCacheOptions.<init>:()V
            astore 1 /* copy */
        start local 1 // io.ebean.cache.ServerCacheOptions copy
         1: .line 78
            aload 1 /* copy */
            aload 0 /* this */
            getfield io.ebean.cache.ServerCacheOptions.maxSize:I
            putfield io.ebean.cache.ServerCacheOptions.maxSize:I
         2: .line 79
            aload 1 /* copy */
            aload 0 /* this */
            getfield io.ebean.cache.ServerCacheOptions.maxIdleSecs:I
            putfield io.ebean.cache.ServerCacheOptions.maxIdleSecs:I
         3: .line 80
            aload 1 /* copy */
            aload 0 /* this */
            getfield io.ebean.cache.ServerCacheOptions.maxSecsToLive:I
            putfield io.ebean.cache.ServerCacheOptions.maxSecsToLive:I
         4: .line 81
            aload 1 /* copy */
            aload 0 /* this */
            getfield io.ebean.cache.ServerCacheOptions.trimFrequency:I
            putfield io.ebean.cache.ServerCacheOptions.trimFrequency:I
         5: .line 82
            aload 1 /* copy */
            aload 0 /* this */
            getfield io.ebean.cache.ServerCacheOptions.nearCache:Z
            putfield io.ebean.cache.ServerCacheOptions.nearCache:Z
         6: .line 83
            aload 1 /* copy */
            areturn
        end local 1 // io.ebean.cache.ServerCacheOptions copy
        end local 0 // io.ebean.cache.ServerCacheOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lio/ebean/cache/ServerCacheOptions;
            1    7     1  copy  Lio/ebean/cache/ServerCacheOptions;

  public io.ebean.cache.ServerCacheOptions copy(boolean);
    descriptor: (Z)Lio/ebean/cache/ServerCacheOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.ebean.cache.ServerCacheOptions this
        start local 1 // boolean nearCache
         0: .line 90
            aload 0 /* this */
            invokevirtual io.ebean.cache.ServerCacheOptions.copy:()Lio/ebean/cache/ServerCacheOptions;
            astore 2 /* copy */
        start local 2 // io.ebean.cache.ServerCacheOptions copy
         1: .line 91
            aload 2 /* copy */
            iload 1 /* nearCache */
            putfield io.ebean.cache.ServerCacheOptions.nearCache:Z
         2: .line 92
            aload 2 /* copy */
            areturn
        end local 2 // io.ebean.cache.ServerCacheOptions copy
        end local 1 // boolean nearCache
        end local 0 // io.ebean.cache.ServerCacheOptions this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lio/ebean/cache/ServerCacheOptions;
            0    3     1  nearCache  Z
            1    3     2       copy  Lio/ebean/cache/ServerCacheOptions;
    MethodParameters:
           Name  Flags
      nearCache  

  public boolean isNearCache();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebean.cache.ServerCacheOptions this
         0: .line 99
            aload 0 /* this */
            getfield io.ebean.cache.ServerCacheOptions.nearCache:Z
            ireturn
        end local 0 // io.ebean.cache.ServerCacheOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebean/cache/ServerCacheOptions;

  public void setNearCache(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.ebean.cache.ServerCacheOptions this
        start local 1 // boolean nearCache
         0: .line 106
            aload 0 /* this */
            iload 1 /* nearCache */
            putfield io.ebean.cache.ServerCacheOptions.nearCache:Z
         1: .line 107
            return
        end local 1 // boolean nearCache
        end local 0 // io.ebean.cache.ServerCacheOptions this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lio/ebean/cache/ServerCacheOptions;
            0    2     1  nearCache  Z
    MethodParameters:
           Name  Flags
      nearCache  

  public int getMaxSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebean.cache.ServerCacheOptions this
         0: .line 113
            aload 0 /* this */
            getfield io.ebean.cache.ServerCacheOptions.maxSize:I
            ireturn
        end local 0 // io.ebean.cache.ServerCacheOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebean/cache/ServerCacheOptions;

  public void setMaxSize(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.ebean.cache.ServerCacheOptions this
        start local 1 // int maxSize
         0: .line 120
            aload 0 /* this */
            iload 1 /* maxSize */
            putfield io.ebean.cache.ServerCacheOptions.maxSize:I
         1: .line 121
            return
        end local 1 // int maxSize
        end local 0 // io.ebean.cache.ServerCacheOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/ebean/cache/ServerCacheOptions;
            0    2     1  maxSize  I
    MethodParameters:
         Name  Flags
      maxSize  

  public int getMaxIdleSecs();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebean.cache.ServerCacheOptions this
         0: .line 127
            aload 0 /* this */
            getfield io.ebean.cache.ServerCacheOptions.maxIdleSecs:I
            ireturn
        end local 0 // io.ebean.cache.ServerCacheOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebean/cache/ServerCacheOptions;

  public void setMaxIdleSecs(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.ebean.cache.ServerCacheOptions this
        start local 1 // int maxIdleSecs
         0: .line 134
            aload 0 /* this */
            iload 1 /* maxIdleSecs */
            putfield io.ebean.cache.ServerCacheOptions.maxIdleSecs:I
         1: .line 135
            return
        end local 1 // int maxIdleSecs
        end local 0 // io.ebean.cache.ServerCacheOptions this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lio/ebean/cache/ServerCacheOptions;
            0    2     1  maxIdleSecs  I
    MethodParameters:
             Name  Flags
      maxIdleSecs  

  public int getMaxSecsToLive();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebean.cache.ServerCacheOptions this
         0: .line 141
            aload 0 /* this */
            getfield io.ebean.cache.ServerCacheOptions.maxSecsToLive:I
            ireturn
        end local 0 // io.ebean.cache.ServerCacheOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebean/cache/ServerCacheOptions;

  public void setMaxSecsToLive(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.ebean.cache.ServerCacheOptions this
        start local 1 // int maxSecsToLive
         0: .line 148
            aload 0 /* this */
            iload 1 /* maxSecsToLive */
            putfield io.ebean.cache.ServerCacheOptions.maxSecsToLive:I
         1: .line 149
            return
        end local 1 // int maxSecsToLive
        end local 0 // io.ebean.cache.ServerCacheOptions this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lio/ebean/cache/ServerCacheOptions;
            0    2     1  maxSecsToLive  I
    MethodParameters:
               Name  Flags
      maxSecsToLive  

  public int getTrimFrequency();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebean.cache.ServerCacheOptions this
         0: .line 155
            aload 0 /* this */
            getfield io.ebean.cache.ServerCacheOptions.trimFrequency:I
            ireturn
        end local 0 // io.ebean.cache.ServerCacheOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebean/cache/ServerCacheOptions;

  public void setTrimFrequency(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.ebean.cache.ServerCacheOptions this
        start local 1 // int trimFrequency
         0: .line 162
            aload 0 /* this */
            iload 1 /* trimFrequency */
            putfield io.ebean.cache.ServerCacheOptions.trimFrequency:I
         1: .line 163
            return
        end local 1 // int trimFrequency
        end local 0 // io.ebean.cache.ServerCacheOptions this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lio/ebean/cache/ServerCacheOptions;
            0    2     1  trimFrequency  I
    MethodParameters:
               Name  Flags
      trimFrequency  
}
SourceFile: "ServerCacheOptions.java"