public class io.dropwizard.jetty.GzipHandlerFactory
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.dropwizard.jetty.GzipHandlerFactory
  super_class: java.lang.Object
{
  private boolean enabled;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private io.dropwizard.util.DataSize minimumEntitySize;
    descriptor: Lio/dropwizard/util/DataSize;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      javax.validation.constraints.NotNull()
    RuntimeVisibleTypeAnnotations: 
      FIELD
        javax.validation.constraints.NotNull()

  private io.dropwizard.util.DataSize bufferSize;
    descriptor: Lio/dropwizard/util/DataSize;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      javax.validation.constraints.NotNull()
    RuntimeVisibleTypeAnnotations: 
      FIELD
        javax.validation.constraints.NotNull()

  private java.util.Set<java.lang.String> excludedUserAgentPatterns;
    descriptor: Ljava/util/Set;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Set<Ljava/lang/String;>;

  private java.util.Set<java.lang.String> compressedMimeTypes;
    descriptor: Ljava/util/Set;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Set<Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      javax.annotation.Nullable()

  private java.util.Set<java.lang.String> excludedMimeTypes;
    descriptor: Ljava/util/Set;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Set<Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      javax.annotation.Nullable()

  private java.util.Set<java.lang.String> includedMethods;
    descriptor: Ljava/util/Set;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Set<Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      javax.annotation.Nullable()

  private java.util.Set<java.lang.String> excludedPaths;
    descriptor: Ljava/util/Set;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Set<Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      javax.annotation.Nullable()

  private java.util.Set<java.lang.String> includedPaths;
    descriptor: Ljava/util/Set;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Set<Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      javax.annotation.Nullable()

  private int deflateCompressionLevel;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      javax.validation.constraints.Min(value = -1)
      javax.validation.constraints.Max(value = 9)
    RuntimeVisibleTypeAnnotations: 
      FIELD
        javax.validation.constraints.Min(value = -1)
      FIELD
        javax.validation.constraints.Max(value = 9)

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

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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.dropwizard.jetty.GzipHandlerFactory this
         0: .line 94
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 96
            aload 0 /* this */
            iconst_1
            putfield io.dropwizard.jetty.GzipHandlerFactory.enabled:Z
         2: .line 99
            aload 0 /* this */
            ldc 256
            invokestatic io.dropwizard.util.DataSize.bytes:(J)Lio/dropwizard/util/DataSize;
            putfield io.dropwizard.jetty.GzipHandlerFactory.minimumEntitySize:Lio/dropwizard/util/DataSize;
         3: .line 102
            aload 0 /* this */
            ldc 8
            invokestatic io.dropwizard.util.DataSize.kibibytes:(J)Lio/dropwizard/util/DataSize;
            putfield io.dropwizard.jetty.GzipHandlerFactory.bufferSize:Lio/dropwizard/util/DataSize;
         4: .line 105
            aload 0 /* this */
            new java.util.HashSet
            dup
            invokespecial java.util.HashSet.<init>:()V
            putfield io.dropwizard.jetty.GzipHandlerFactory.excludedUserAgentPatterns:Ljava/util/Set;
         5: .line 124
            aload 0 /* this */
            iconst_m1
            putfield io.dropwizard.jetty.GzipHandlerFactory.deflateCompressionLevel:I
         6: .line 126
            aload 0 /* this */
            iconst_1
            putfield io.dropwizard.jetty.GzipHandlerFactory.gzipCompatibleInflation:Z
         7: .line 128
            aload 0 /* this */
            iconst_0
            putfield io.dropwizard.jetty.GzipHandlerFactory.syncFlush:Z
         8: .line 94
            return
        end local 0 // io.dropwizard.jetty.GzipHandlerFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lio/dropwizard/jetty/GzipHandlerFactory;

  public boolean isEnabled();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.dropwizard.jetty.GzipHandlerFactory this
         0: .line 132
            aload 0 /* this */
            getfield io.dropwizard.jetty.GzipHandlerFactory.enabled:Z
            ireturn
        end local 0 // io.dropwizard.jetty.GzipHandlerFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/dropwizard/jetty/GzipHandlerFactory;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()

  public void setEnabled(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.dropwizard.jetty.GzipHandlerFactory this
        start local 1 // boolean enabled
         0: .line 137
            aload 0 /* this */
            iload 1 /* enabled */
            putfield io.dropwizard.jetty.GzipHandlerFactory.enabled:Z
         1: .line 138
            return
        end local 1 // boolean enabled
        end local 0 // io.dropwizard.jetty.GzipHandlerFactory this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/dropwizard/jetty/GzipHandlerFactory;
            0    2     1  enabled  Z
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()
    MethodParameters:
         Name  Flags
      enabled  

  public io.dropwizard.util.DataSize getMinimumEntitySize();
    descriptor: ()Lio/dropwizard/util/DataSize;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.dropwizard.jetty.GzipHandlerFactory this
         0: .line 142
            aload 0 /* this */
            getfield io.dropwizard.jetty.GzipHandlerFactory.minimumEntitySize:Lio/dropwizard/util/DataSize;
            areturn
        end local 0 // io.dropwizard.jetty.GzipHandlerFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/dropwizard/jetty/GzipHandlerFactory;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()

  public void setMinimumEntitySize(io.dropwizard.util.DataSize);
    descriptor: (Lio/dropwizard/util/DataSize;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.dropwizard.jetty.GzipHandlerFactory this
        start local 1 // io.dropwizard.util.DataSize size
         0: .line 147
            aload 0 /* this */
            aload 1 /* size */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.dropwizard.util.DataSize
            putfield io.dropwizard.jetty.GzipHandlerFactory.minimumEntitySize:Lio/dropwizard/util/DataSize;
         1: .line 148
            return
        end local 1 // io.dropwizard.util.DataSize size
        end local 0 // io.dropwizard.jetty.GzipHandlerFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/dropwizard/jetty/GzipHandlerFactory;
            0    2     1  size  Lio/dropwizard/util/DataSize;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()
    MethodParameters:
      Name  Flags
      size  

  public io.dropwizard.util.DataSize getBufferSize();
    descriptor: ()Lio/dropwizard/util/DataSize;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.dropwizard.jetty.GzipHandlerFactory this
         0: .line 152
            aload 0 /* this */
            getfield io.dropwizard.jetty.GzipHandlerFactory.bufferSize:Lio/dropwizard/util/DataSize;
            areturn
        end local 0 // io.dropwizard.jetty.GzipHandlerFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/dropwizard/jetty/GzipHandlerFactory;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()

  public void setBufferSize(io.dropwizard.util.DataSize);
    descriptor: (Lio/dropwizard/util/DataSize;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.dropwizard.jetty.GzipHandlerFactory this
        start local 1 // io.dropwizard.util.DataSize size
         0: .line 157
            aload 0 /* this */
            aload 1 /* size */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.dropwizard.util.DataSize
            putfield io.dropwizard.jetty.GzipHandlerFactory.bufferSize:Lio/dropwizard/util/DataSize;
         1: .line 158
            return
        end local 1 // io.dropwizard.util.DataSize size
        end local 0 // io.dropwizard.jetty.GzipHandlerFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/dropwizard/jetty/GzipHandlerFactory;
            0    2     1  size  Lio/dropwizard/util/DataSize;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()
    MethodParameters:
      Name  Flags
      size  

  public java.util.Set<java.lang.String> getCompressedMimeTypes();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.dropwizard.jetty.GzipHandlerFactory this
         0: .line 163
            aload 0 /* this */
            getfield io.dropwizard.jetty.GzipHandlerFactory.compressedMimeTypes:Ljava/util/Set;
            areturn
        end local 0 // io.dropwizard.jetty.GzipHandlerFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/dropwizard/jetty/GzipHandlerFactory;
    Signature: ()Ljava/util/Set<Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()
      javax.annotation.Nullable()
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        javax.annotation.Nullable()

  public void setCompressedMimeTypes(java.util.Set<java.lang.String>);
    descriptor: (Ljava/util/Set;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.dropwizard.jetty.GzipHandlerFactory this
        start local 1 // java.util.Set mimeTypes
         0: .line 168
            aload 0 /* this */
            aload 1 /* mimeTypes */
            putfield io.dropwizard.jetty.GzipHandlerFactory.compressedMimeTypes:Ljava/util/Set;
         1: .line 169
            return
        end local 1 // java.util.Set mimeTypes
        end local 0 // io.dropwizard.jetty.GzipHandlerFactory this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lio/dropwizard/jetty/GzipHandlerFactory;
            0    2     1  mimeTypes  Ljava/util/Set<Ljava/lang/String;>;
    Signature: (Ljava/util/Set<Ljava/lang/String;>;)V
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()
    MethodParameters:
           Name  Flags
      mimeTypes  

  public java.util.Set<java.lang.String> getExcludedMimeTypes();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.dropwizard.jetty.GzipHandlerFactory this
         0: .line 177
            aload 0 /* this */
            getfield io.dropwizard.jetty.GzipHandlerFactory.excludedMimeTypes:Ljava/util/Set;
            areturn
        end local 0 // io.dropwizard.jetty.GzipHandlerFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/dropwizard/jetty/GzipHandlerFactory;
    Signature: ()Ljava/util/Set<Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()
      javax.annotation.Nullable()
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        javax.annotation.Nullable()

  public void setExcludedMimeTypes(java.util.Set<java.lang.String>);
    descriptor: (Ljava/util/Set;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.dropwizard.jetty.GzipHandlerFactory this
        start local 1 // java.util.Set mimeTypes
         0: .line 185
            aload 0 /* this */
            aload 1 /* mimeTypes */
            putfield io.dropwizard.jetty.GzipHandlerFactory.excludedMimeTypes:Ljava/util/Set;
         1: .line 186
            return
        end local 1 // java.util.Set mimeTypes
        end local 0 // io.dropwizard.jetty.GzipHandlerFactory this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lio/dropwizard/jetty/GzipHandlerFactory;
            0    2     1  mimeTypes  Ljava/util/Set<Ljava/lang/String;>;
    Signature: (Ljava/util/Set<Ljava/lang/String;>;)V
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()
    MethodParameters:
           Name  Flags
      mimeTypes  

  public int getDeflateCompressionLevel();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.dropwizard.jetty.GzipHandlerFactory this
         0: .line 190
            aload 0 /* this */
            getfield io.dropwizard.jetty.GzipHandlerFactory.deflateCompressionLevel:I
            ireturn
        end local 0 // io.dropwizard.jetty.GzipHandlerFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/dropwizard/jetty/GzipHandlerFactory;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()

  public void setDeflateCompressionLevel(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.dropwizard.jetty.GzipHandlerFactory this
        start local 1 // int level
         0: .line 195
            aload 0 /* this */
            iload 1 /* level */
            putfield io.dropwizard.jetty.GzipHandlerFactory.deflateCompressionLevel:I
         1: .line 196
            return
        end local 1 // int level
        end local 0 // io.dropwizard.jetty.GzipHandlerFactory this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/dropwizard/jetty/GzipHandlerFactory;
            0    2     1  level  I
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()
    MethodParameters:
       Name  Flags
      level  

  public boolean isGzipCompatibleInflation();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.dropwizard.jetty.GzipHandlerFactory this
         0: .line 203
            aload 0 /* this */
            getfield io.dropwizard.jetty.GzipHandlerFactory.gzipCompatibleInflation:Z
            ireturn
        end local 0 // io.dropwizard.jetty.GzipHandlerFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/dropwizard/jetty/GzipHandlerFactory;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()

  public void setGzipCompatibleInflation(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.dropwizard.jetty.GzipHandlerFactory this
        start local 1 // boolean gzipCompatibleInflation
         0: .line 212
            aload 0 /* this */
            iload 1 /* gzipCompatibleInflation */
            putfield io.dropwizard.jetty.GzipHandlerFactory.gzipCompatibleInflation:Z
         1: .line 213
            return
        end local 1 // boolean gzipCompatibleInflation
        end local 0 // io.dropwizard.jetty.GzipHandlerFactory this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0    2     0                     this  Lio/dropwizard/jetty/GzipHandlerFactory;
            0    2     1  gzipCompatibleInflation  Z
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
      com.fasterxml.jackson.annotation.JsonProperty()
    MethodParameters:
                         Name  Flags
      gzipCompatibleInflation  

  public java.util.Set<java.lang.String> getExcludedUserAgentPatterns();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.dropwizard.jetty.GzipHandlerFactory this
         0: .line 216
            aload 0 /* this */
            getfield io.dropwizard.jetty.GzipHandlerFactory.excludedUserAgentPatterns:Ljava/util/Set;
            areturn
        end local 0 // io.dropwizard.jetty.GzipHandlerFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/dropwizard/jetty/GzipHandlerFactory;
    Signature: ()Ljava/util/Set<Ljava/lang/String;>;

  public void setExcludedUserAgentPatterns(java.util.Set<java.lang.String>);
    descriptor: (Ljava/util/Set;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.dropwizard.jetty.GzipHandlerFactory this
        start local 1 // java.util.Set excludedUserAgentPatterns
         0: .line 220
            aload 0 /* this */
            aload 1 /* excludedUserAgentPatterns */
            putfield io.dropwizard.jetty.GzipHandlerFactory.excludedUserAgentPatterns:Ljava/util/Set;
         1: .line 221
            return
        end local 1 // java.util.Set excludedUserAgentPatterns
        end local 0 // io.dropwizard.jetty.GzipHandlerFactory this
      LocalVariableTable:
        Start  End  Slot                       Name  Signature
            0    2     0                       this  Lio/dropwizard/jetty/GzipHandlerFactory;
            0    2     1  excludedUserAgentPatterns  Ljava/util/Set<Ljava/lang/String;>;
    Signature: (Ljava/util/Set<Ljava/lang/String;>;)V
    MethodParameters:
                           Name  Flags
      excludedUserAgentPatterns  

  public java.util.Set<java.lang.String> getIncludedMethods();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.dropwizard.jetty.GzipHandlerFactory this
         0: .line 226
            aload 0 /* this */
            getfield io.dropwizard.jetty.GzipHandlerFactory.includedMethods:Ljava/util/Set;
            areturn
        end local 0 // io.dropwizard.jetty.GzipHandlerFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/dropwizard/jetty/GzipHandlerFactory;
    Signature: ()Ljava/util/Set<Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()
      javax.annotation.Nullable()
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        javax.annotation.Nullable()

  public void setIncludedMethods(java.util.Set<java.lang.String>);
    descriptor: (Ljava/util/Set;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.dropwizard.jetty.GzipHandlerFactory this
        start local 1 // java.util.Set methods
         0: .line 231
            aload 0 /* this */
            aload 1 /* methods */
            putfield io.dropwizard.jetty.GzipHandlerFactory.includedMethods:Ljava/util/Set;
         1: .line 232
            return
        end local 1 // java.util.Set methods
        end local 0 // io.dropwizard.jetty.GzipHandlerFactory this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/dropwizard/jetty/GzipHandlerFactory;
            0    2     1  methods  Ljava/util/Set<Ljava/lang/String;>;
    Signature: (Ljava/util/Set<Ljava/lang/String;>;)V
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()
    MethodParameters:
         Name  Flags
      methods  

  public java.util.Set<java.lang.String> getExcludedPaths();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.dropwizard.jetty.GzipHandlerFactory this
         0: .line 240
            aload 0 /* this */
            getfield io.dropwizard.jetty.GzipHandlerFactory.excludedPaths:Ljava/util/Set;
            areturn
        end local 0 // io.dropwizard.jetty.GzipHandlerFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/dropwizard/jetty/GzipHandlerFactory;
    Signature: ()Ljava/util/Set<Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()
      javax.annotation.Nullable()
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        javax.annotation.Nullable()

  public void setExcludedPaths(java.util.Set<java.lang.String>);
    descriptor: (Ljava/util/Set;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.dropwizard.jetty.GzipHandlerFactory this
        start local 1 // java.util.Set paths
         0: .line 248
            aload 0 /* this */
            aload 1 /* paths */
            putfield io.dropwizard.jetty.GzipHandlerFactory.excludedPaths:Ljava/util/Set;
         1: .line 249
            return
        end local 1 // java.util.Set paths
        end local 0 // io.dropwizard.jetty.GzipHandlerFactory this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/dropwizard/jetty/GzipHandlerFactory;
            0    2     1  paths  Ljava/util/Set<Ljava/lang/String;>;
    Signature: (Ljava/util/Set<Ljava/lang/String;>;)V
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()
    MethodParameters:
       Name  Flags
      paths  

  public java.util.Set<java.lang.String> getIncludedPaths();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.dropwizard.jetty.GzipHandlerFactory this
         0: .line 257
            aload 0 /* this */
            getfield io.dropwizard.jetty.GzipHandlerFactory.includedPaths:Ljava/util/Set;
            areturn
        end local 0 // io.dropwizard.jetty.GzipHandlerFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/dropwizard/jetty/GzipHandlerFactory;
    Signature: ()Ljava/util/Set<Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()
      javax.annotation.Nullable()
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        javax.annotation.Nullable()

  public void setIncludedPaths(java.util.Set<java.lang.String>);
    descriptor: (Ljava/util/Set;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.dropwizard.jetty.GzipHandlerFactory this
        start local 1 // java.util.Set paths
         0: .line 265
            aload 0 /* this */
            aload 1 /* paths */
            putfield io.dropwizard.jetty.GzipHandlerFactory.includedPaths:Ljava/util/Set;
         1: .line 266
            return
        end local 1 // java.util.Set paths
        end local 0 // io.dropwizard.jetty.GzipHandlerFactory this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/dropwizard/jetty/GzipHandlerFactory;
            0    2     1  paths  Ljava/util/Set<Ljava/lang/String;>;
    Signature: (Ljava/util/Set<Ljava/lang/String;>;)V
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()
    MethodParameters:
       Name  Flags
      paths  

  public boolean isSyncFlush();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.dropwizard.jetty.GzipHandlerFactory this
         0: .line 270
            aload 0 /* this */
            getfield io.dropwizard.jetty.GzipHandlerFactory.syncFlush:Z
            ireturn
        end local 0 // io.dropwizard.jetty.GzipHandlerFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/dropwizard/jetty/GzipHandlerFactory;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()

  public void setSyncFlush(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.dropwizard.jetty.GzipHandlerFactory this
        start local 1 // boolean syncFlush
         0: .line 275
            aload 0 /* this */
            iload 1 /* syncFlush */
            putfield io.dropwizard.jetty.GzipHandlerFactory.syncFlush:Z
         1: .line 276
            return
        end local 1 // boolean syncFlush
        end local 0 // io.dropwizard.jetty.GzipHandlerFactory this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lio/dropwizard/jetty/GzipHandlerFactory;
            0    2     1  syncFlush  Z
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()
    MethodParameters:
           Name  Flags
      syncFlush  

  public org.eclipse.jetty.server.handler.gzip.GzipHandler build(org.eclipse.jetty.server.Handler);
    descriptor: (Lorg/eclipse/jetty/server/Handler;)Lorg/eclipse/jetty/server/handler/gzip/GzipHandler;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.dropwizard.jetty.GzipHandlerFactory this
        start local 1 // org.eclipse.jetty.server.Handler handler
         0: .line 279
            new org.eclipse.jetty.server.handler.gzip.GzipHandler
            dup
            invokespecial org.eclipse.jetty.server.handler.gzip.GzipHandler.<init>:()V
            astore 2 /* gzipHandler */
        start local 2 // org.eclipse.jetty.server.handler.gzip.GzipHandler gzipHandler
         1: .line 280
            aload 2 /* gzipHandler */
            aload 1 /* handler */
            invokevirtual org.eclipse.jetty.server.handler.gzip.GzipHandler.setHandler:(Lorg/eclipse/jetty/server/Handler;)V
         2: .line 281
            aload 2 /* gzipHandler */
            aload 0 /* this */
            getfield io.dropwizard.jetty.GzipHandlerFactory.minimumEntitySize:Lio/dropwizard/util/DataSize;
            invokevirtual io.dropwizard.util.DataSize.toBytes:()J
            l2i
            invokevirtual org.eclipse.jetty.server.handler.gzip.GzipHandler.setMinGzipSize:(I)V
         3: .line 282
            aload 2 /* gzipHandler */
            aload 0 /* this */
            getfield io.dropwizard.jetty.GzipHandlerFactory.bufferSize:Lio/dropwizard/util/DataSize;
            invokevirtual io.dropwizard.util.DataSize.toBytes:()J
            l2i
            invokevirtual org.eclipse.jetty.server.handler.gzip.GzipHandler.setInflateBufferSize:(I)V
         4: .line 283
            aload 2 /* gzipHandler */
            aload 0 /* this */
            getfield io.dropwizard.jetty.GzipHandlerFactory.deflateCompressionLevel:I
            invokevirtual org.eclipse.jetty.server.handler.gzip.GzipHandler.setCompressionLevel:(I)V
         5: .line 284
            aload 2 /* gzipHandler */
            aload 0 /* this */
            getfield io.dropwizard.jetty.GzipHandlerFactory.syncFlush:Z
            invokevirtual org.eclipse.jetty.server.handler.gzip.GzipHandler.setSyncFlush:(Z)V
         6: .line 286
            aload 0 /* this */
            getfield io.dropwizard.jetty.GzipHandlerFactory.compressedMimeTypes:Ljava/util/Set;
            ifnull 8
         7: .line 287
            aload 2 /* gzipHandler */
            aload 0 /* this */
            getfield io.dropwizard.jetty.GzipHandlerFactory.compressedMimeTypes:Ljava/util/Set;
            iconst_0
            anewarray java.lang.String
            invokeinterface java.util.Set.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            checkcast java.lang.String[]
            invokevirtual org.eclipse.jetty.server.handler.gzip.GzipHandler.setIncludedMimeTypes:([Ljava/lang/String;)V
         8: .line 290
      StackMap locals: org.eclipse.jetty.server.handler.gzip.GzipHandler
      StackMap stack:
            aload 0 /* this */
            getfield io.dropwizard.jetty.GzipHandlerFactory.excludedMimeTypes:Ljava/util/Set;
            ifnull 10
         9: .line 291
            aload 2 /* gzipHandler */
            aload 0 /* this */
            getfield io.dropwizard.jetty.GzipHandlerFactory.excludedMimeTypes:Ljava/util/Set;
            iconst_0
            anewarray java.lang.String
            invokeinterface java.util.Set.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            checkcast java.lang.String[]
            invokevirtual org.eclipse.jetty.server.handler.gzip.GzipHandler.setExcludedMimeTypes:([Ljava/lang/String;)V
        10: .line 294
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.dropwizard.jetty.GzipHandlerFactory.includedMethods:Ljava/util/Set;
            ifnull 12
        11: .line 295
            aload 2 /* gzipHandler */
            aload 0 /* this */
            getfield io.dropwizard.jetty.GzipHandlerFactory.includedMethods:Ljava/util/Set;
            iconst_0
            anewarray java.lang.String
            invokeinterface java.util.Set.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            checkcast java.lang.String[]
            invokevirtual org.eclipse.jetty.server.handler.gzip.GzipHandler.setIncludedMethods:([Ljava/lang/String;)V
        12: .line 298
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.dropwizard.jetty.GzipHandlerFactory.excludedPaths:Ljava/util/Set;
            ifnull 14
        13: .line 299
            aload 2 /* gzipHandler */
            aload 0 /* this */
            getfield io.dropwizard.jetty.GzipHandlerFactory.excludedPaths:Ljava/util/Set;
            iconst_0
            anewarray java.lang.String
            invokeinterface java.util.Set.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            checkcast java.lang.String[]
            invokevirtual org.eclipse.jetty.server.handler.gzip.GzipHandler.setExcludedPaths:([Ljava/lang/String;)V
        14: .line 302
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.dropwizard.jetty.GzipHandlerFactory.includedPaths:Ljava/util/Set;
            ifnull 16
        15: .line 303
            aload 2 /* gzipHandler */
            aload 0 /* this */
            getfield io.dropwizard.jetty.GzipHandlerFactory.includedPaths:Ljava/util/Set;
            iconst_0
            anewarray java.lang.String
            invokeinterface java.util.Set.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            checkcast java.lang.String[]
            invokevirtual org.eclipse.jetty.server.handler.gzip.GzipHandler.setIncludedPaths:([Ljava/lang/String;)V
        16: .line 306
      StackMap locals:
      StackMap stack:
            aload 2 /* gzipHandler */
            aload 0 /* this */
            getfield io.dropwizard.jetty.GzipHandlerFactory.excludedUserAgentPatterns:Ljava/util/Set;
            iconst_0
            anewarray java.lang.String
            invokeinterface java.util.Set.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            checkcast java.lang.String[]
            invokevirtual org.eclipse.jetty.server.handler.gzip.GzipHandler.setExcludedAgentPatterns:([Ljava/lang/String;)V
        17: .line 308
            aload 2 /* gzipHandler */
            areturn
        end local 2 // org.eclipse.jetty.server.handler.gzip.GzipHandler gzipHandler
        end local 1 // org.eclipse.jetty.server.Handler handler
        end local 0 // io.dropwizard.jetty.GzipHandlerFactory this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   18     0         this  Lio/dropwizard/jetty/GzipHandlerFactory;
            0   18     1      handler  Lorg/eclipse/jetty/server/Handler;
            1   18     2  gzipHandler  Lorg/eclipse/jetty/server/handler/gzip/GzipHandler;
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        javax.annotation.Nullable()
    RuntimeVisibleParameterAnnotations: 
      0:
        javax.annotation.Nullable()
    MethodParameters:
         Name  Flags
      handler  
}
SourceFile: "GzipHandlerFactory.java"