public class io.dropwizard.client.JerseyClientConfiguration extends io.dropwizard.client.HttpClientConfiguration
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.dropwizard.client.JerseyClientConfiguration
  super_class: io.dropwizard.client.HttpClientConfiguration
{
  private int minThreads;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      javax.validation.constraints.Min(value = 1)
      javax.validation.constraints.Max(value = 16384)
    RuntimeVisibleTypeAnnotations: 
      FIELD
        javax.validation.constraints.Min(value = 1)
      FIELD
        javax.validation.constraints.Max(value = 16384)

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

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

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

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

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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.dropwizard.client.JerseyClientConfiguration this
         0: .line 17
            aload 0 /* this */
            invokespecial io.dropwizard.client.HttpClientConfiguration.<init>:()V
         1: .line 20
            aload 0 /* this */
            iconst_1
            putfield io.dropwizard.client.JerseyClientConfiguration.minThreads:I
         2: .line 24
            aload 0 /* this */
            sipush 128
            putfield io.dropwizard.client.JerseyClientConfiguration.maxThreads:I
         3: .line 28
            aload 0 /* this */
            bipush 8
            putfield io.dropwizard.client.JerseyClientConfiguration.workQueueSize:I
         4: .line 30
            aload 0 /* this */
            iconst_1
            putfield io.dropwizard.client.JerseyClientConfiguration.gzipEnabled:Z
         5: .line 32
            aload 0 /* this */
            iconst_1
            putfield io.dropwizard.client.JerseyClientConfiguration.gzipEnabledForRequests:Z
         6: .line 34
            aload 0 /* this */
            iconst_1
            putfield io.dropwizard.client.JerseyClientConfiguration.chunkedEncodingEnabled:Z
         7: .line 17
            return
        end local 0 // io.dropwizard.client.JerseyClientConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lio/dropwizard/client/JerseyClientConfiguration;

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

  public void setMinThreads(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.dropwizard.client.JerseyClientConfiguration this
        start local 1 // int minThreads
         0: .line 43
            aload 0 /* this */
            iload 1 /* minThreads */
            putfield io.dropwizard.client.JerseyClientConfiguration.minThreads:I
         1: .line 44
            return
        end local 1 // int minThreads
        end local 0 // io.dropwizard.client.JerseyClientConfiguration this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lio/dropwizard/client/JerseyClientConfiguration;
            0    2     1  minThreads  I
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()
    MethodParameters:
            Name  Flags
      minThreads  

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

  public void setMaxThreads(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.dropwizard.client.JerseyClientConfiguration this
        start local 1 // int maxThreads
         0: .line 53
            aload 0 /* this */
            iload 1 /* maxThreads */
            putfield io.dropwizard.client.JerseyClientConfiguration.maxThreads:I
         1: .line 54
            return
        end local 1 // int maxThreads
        end local 0 // io.dropwizard.client.JerseyClientConfiguration this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lio/dropwizard/client/JerseyClientConfiguration;
            0    2     1  maxThreads  I
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()
    MethodParameters:
            Name  Flags
      maxThreads  

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

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

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

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

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

  public void setChunkedEncodingEnabled(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.dropwizard.client.JerseyClientConfiguration this
        start local 1 // boolean chunkedEncodingEnabled
         0: .line 83
            aload 0 /* this */
            iload 1 /* chunkedEncodingEnabled */
            putfield io.dropwizard.client.JerseyClientConfiguration.chunkedEncodingEnabled:Z
         1: .line 84
            return
        end local 1 // boolean chunkedEncodingEnabled
        end local 0 // io.dropwizard.client.JerseyClientConfiguration this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0    2     0                    this  Lio/dropwizard/client/JerseyClientConfiguration;
            0    2     1  chunkedEncodingEnabled  Z
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()
    MethodParameters:
                        Name  Flags
      chunkedEncodingEnabled  final

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

  public void setWorkQueueSize(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.dropwizard.client.JerseyClientConfiguration this
        start local 1 // int workQueueSize
         0: .line 93
            aload 0 /* this */
            iload 1 /* workQueueSize */
            putfield io.dropwizard.client.JerseyClientConfiguration.workQueueSize:I
         1: .line 94
            return
        end local 1 // int workQueueSize
        end local 0 // io.dropwizard.client.JerseyClientConfiguration this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lio/dropwizard/client/JerseyClientConfiguration;
            0    2     1  workQueueSize  I
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()
    MethodParameters:
               Name  Flags
      workQueueSize  

  public boolean isThreadPoolSizedCorrectly();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.dropwizard.client.JerseyClientConfiguration this
         0: .line 99
            aload 0 /* this */
            getfield io.dropwizard.client.JerseyClientConfiguration.minThreads:I
            aload 0 /* this */
            getfield io.dropwizard.client.JerseyClientConfiguration.maxThreads:I
            if_icmpgt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.dropwizard.client.JerseyClientConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/dropwizard/client/JerseyClientConfiguration;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonIgnore()
      io.dropwizard.validation.ValidationMethod(message = ".minThreads must be less than or equal to maxThreads")

  public boolean isCompressionConfigurationValid();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.dropwizard.client.JerseyClientConfiguration this
         0: .line 105
            aload 0 /* this */
            getfield io.dropwizard.client.JerseyClientConfiguration.gzipEnabledForRequests:Z
            ifeq 1
            aload 0 /* this */
            getfield io.dropwizard.client.JerseyClientConfiguration.gzipEnabled:Z
            ifne 1
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
        end local 0 // io.dropwizard.client.JerseyClientConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/dropwizard/client/JerseyClientConfiguration;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonIgnore()
      io.dropwizard.validation.ValidationMethod(message = ".gzipEnabledForRequests requires gzipEnabled set to true")
}
SourceFile: "JerseyClientConfiguration.java"