public class io.dropwizard.server.SimpleServerFactory extends io.dropwizard.server.AbstractServerFactory
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.dropwizard.server.SimpleServerFactory
  super_class: io.dropwizard.server.AbstractServerFactory
{
  private static final org.slf4j.Logger LOGGER;
    descriptor: Lorg/slf4j/Logger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private io.dropwizard.jetty.ConnectorFactory connector;
    descriptor: Lio/dropwizard/jetty/ConnectorFactory;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      javax.validation.Valid()
      javax.validation.constraints.NotNull()

  private java.lang.String applicationContextPath;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      org.hibernate.validator.constraints.NotEmpty()

  private java.lang.String adminContextPath;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      org.hibernate.validator.constraints.NotEmpty()

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 58
            ldc Lio/dropwizard/server/SimpleServerFactory;
            invokestatic org.slf4j.LoggerFactory.getLogger:(Ljava/lang/Class;)Lorg/slf4j/Logger;
            putstatic io.dropwizard.server.SimpleServerFactory.LOGGER:Lorg/slf4j/Logger;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.dropwizard.server.SimpleServerFactory this
         0: .line 56
            aload 0 /* this */
            invokespecial io.dropwizard.server.AbstractServerFactory.<init>:()V
         1: .line 62
            aload 0 /* this */
            invokestatic io.dropwizard.jetty.HttpConnectorFactory.application:()Lio/dropwizard/jetty/ConnectorFactory;
            putfield io.dropwizard.server.SimpleServerFactory.connector:Lio/dropwizard/jetty/ConnectorFactory;
         2: .line 65
            aload 0 /* this */
            ldc "/application"
            putfield io.dropwizard.server.SimpleServerFactory.applicationContextPath:Ljava/lang/String;
         3: .line 68
            aload 0 /* this */
            ldc "/admin"
            putfield io.dropwizard.server.SimpleServerFactory.adminContextPath:Ljava/lang/String;
         4: .line 56
            return
        end local 0 // io.dropwizard.server.SimpleServerFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/dropwizard/server/SimpleServerFactory;

  public io.dropwizard.jetty.ConnectorFactory getConnector();
    descriptor: ()Lio/dropwizard/jetty/ConnectorFactory;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.dropwizard.server.SimpleServerFactory this
         0: .line 72
            aload 0 /* this */
            getfield io.dropwizard.server.SimpleServerFactory.connector:Lio/dropwizard/jetty/ConnectorFactory;
            areturn
        end local 0 // io.dropwizard.server.SimpleServerFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/dropwizard/server/SimpleServerFactory;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()

  public void setConnector(io.dropwizard.jetty.ConnectorFactory);
    descriptor: (Lio/dropwizard/jetty/ConnectorFactory;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.dropwizard.server.SimpleServerFactory this
        start local 1 // io.dropwizard.jetty.ConnectorFactory factory
         0: .line 77
            aload 0 /* this */
            aload 1 /* factory */
            putfield io.dropwizard.server.SimpleServerFactory.connector:Lio/dropwizard/jetty/ConnectorFactory;
         1: .line 78
            return
        end local 1 // io.dropwizard.jetty.ConnectorFactory factory
        end local 0 // io.dropwizard.server.SimpleServerFactory this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/dropwizard/server/SimpleServerFactory;
            0    2     1  factory  Lio/dropwizard/jetty/ConnectorFactory;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()
    MethodParameters:
         Name  Flags
      factory  

  public java.lang.String getApplicationContextPath();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.dropwizard.server.SimpleServerFactory this
         0: .line 82
            aload 0 /* this */
            getfield io.dropwizard.server.SimpleServerFactory.applicationContextPath:Ljava/lang/String;
            areturn
        end local 0 // io.dropwizard.server.SimpleServerFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/dropwizard/server/SimpleServerFactory;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()

  public void setApplicationContextPath(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.dropwizard.server.SimpleServerFactory this
        start local 1 // java.lang.String contextPath
         0: .line 87
            aload 0 /* this */
            aload 1 /* contextPath */
            putfield io.dropwizard.server.SimpleServerFactory.applicationContextPath:Ljava/lang/String;
         1: .line 88
            return
        end local 1 // java.lang.String contextPath
        end local 0 // io.dropwizard.server.SimpleServerFactory this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lio/dropwizard/server/SimpleServerFactory;
            0    2     1  contextPath  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()
    MethodParameters:
             Name  Flags
      contextPath  

  public java.lang.String getAdminContextPath();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.dropwizard.server.SimpleServerFactory this
         0: .line 92
            aload 0 /* this */
            getfield io.dropwizard.server.SimpleServerFactory.adminContextPath:Ljava/lang/String;
            areturn
        end local 0 // io.dropwizard.server.SimpleServerFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/dropwizard/server/SimpleServerFactory;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()

  public void setAdminContextPath(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.dropwizard.server.SimpleServerFactory this
        start local 1 // java.lang.String contextPath
         0: .line 97
            aload 0 /* this */
            aload 1 /* contextPath */
            putfield io.dropwizard.server.SimpleServerFactory.adminContextPath:Ljava/lang/String;
         1: .line 98
            return
        end local 1 // java.lang.String contextPath
        end local 0 // io.dropwizard.server.SimpleServerFactory this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lio/dropwizard/server/SimpleServerFactory;
            0    2     1  contextPath  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()
    MethodParameters:
             Name  Flags
      contextPath  

  public org.eclipse.jetty.server.Server build(io.dropwizard.setup.Environment);
    descriptor: (Lio/dropwizard/setup/Environment;)Lorg/eclipse/jetty/server/Server;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=9, args_size=2
        start local 0 // io.dropwizard.server.SimpleServerFactory this
        start local 1 // io.dropwizard.setup.Environment environment
         0: .line 103
            aload 0 /* this */
            aload 1 /* environment */
            invokevirtual io.dropwizard.server.SimpleServerFactory.configure:(Lio/dropwizard/setup/Environment;)V
         1: .line 105
            aload 0 /* this */
            aload 1 /* environment */
            invokevirtual io.dropwizard.setup.Environment.getName:()Ljava/lang/String;
            invokevirtual io.dropwizard.server.SimpleServerFactory.printBanner:(Ljava/lang/String;)V
         2: .line 106
            aload 0 /* this */
            aload 1 /* environment */
            invokevirtual io.dropwizard.setup.Environment.metrics:()Lcom/codahale/metrics/MetricRegistry;
            invokevirtual io.dropwizard.server.SimpleServerFactory.createThreadPool:(Lcom/codahale/metrics/MetricRegistry;)Lorg/eclipse/jetty/util/thread/ThreadPool;
            astore 2 /* threadPool */
        start local 2 // org.eclipse.jetty.util.thread.ThreadPool threadPool
         3: .line 107
            aload 0 /* this */
            aload 1 /* environment */
            invokevirtual io.dropwizard.setup.Environment.lifecycle:()Lio/dropwizard/lifecycle/setup/LifecycleEnvironment;
            aload 2 /* threadPool */
            invokevirtual io.dropwizard.server.SimpleServerFactory.buildServer:(Lio/dropwizard/lifecycle/setup/LifecycleEnvironment;Lorg/eclipse/jetty/util/thread/ThreadPool;)Lorg/eclipse/jetty/server/Server;
            astore 3 /* server */
        start local 3 // org.eclipse.jetty.server.Server server
         4: .line 109
            aload 0 /* this */
            aload 3 /* server */
         5: .line 110
            aload 1 /* environment */
            invokevirtual io.dropwizard.setup.Environment.jersey:()Lio/dropwizard/jersey/setup/JerseyEnvironment;
         6: .line 111
            aload 1 /* environment */
            invokevirtual io.dropwizard.setup.Environment.getObjectMapper:()Lcom/fasterxml/jackson/databind/ObjectMapper;
         7: .line 112
            aload 1 /* environment */
            invokevirtual io.dropwizard.setup.Environment.getValidator:()Ljavax/validation/Validator;
         8: .line 113
            aload 1 /* environment */
            invokevirtual io.dropwizard.setup.Environment.getApplicationContext:()Lio/dropwizard/jetty/MutableServletContextHandler;
         9: .line 114
            aload 1 /* environment */
            invokevirtual io.dropwizard.setup.Environment.getJerseyServletContainer:()Ljavax/servlet/Servlet;
        10: .line 115
            aload 1 /* environment */
            invokevirtual io.dropwizard.setup.Environment.metrics:()Lcom/codahale/metrics/MetricRegistry;
        11: .line 109
            invokevirtual io.dropwizard.server.SimpleServerFactory.createAppServlet:(Lorg/eclipse/jetty/server/Server;Lio/dropwizard/jersey/setup/JerseyEnvironment;Lcom/fasterxml/jackson/databind/ObjectMapper;Ljavax/validation/Validator;Lio/dropwizard/jetty/MutableServletContextHandler;Ljavax/servlet/Servlet;Lcom/codahale/metrics/MetricRegistry;)Lorg/eclipse/jetty/server/Handler;
            astore 4 /* applicationHandler */
        start local 4 // org.eclipse.jetty.server.Handler applicationHandler
        12: .line 117
            aload 0 /* this */
            aload 3 /* server */
        13: .line 118
            aload 1 /* environment */
            invokevirtual io.dropwizard.setup.Environment.getAdminContext:()Lio/dropwizard/jetty/MutableServletContextHandler;
        14: .line 119
            aload 1 /* environment */
            invokevirtual io.dropwizard.setup.Environment.metrics:()Lcom/codahale/metrics/MetricRegistry;
        15: .line 120
            aload 1 /* environment */
            invokevirtual io.dropwizard.setup.Environment.healthChecks:()Lcom/codahale/metrics/health/HealthCheckRegistry;
        16: .line 117
            invokevirtual io.dropwizard.server.SimpleServerFactory.createAdminServlet:(Lorg/eclipse/jetty/server/Server;Lio/dropwizard/jetty/MutableServletContextHandler;Lcom/codahale/metrics/MetricRegistry;Lcom/codahale/metrics/health/HealthCheckRegistry;)Lorg/eclipse/jetty/server/Handler;
            astore 5 /* adminHandler */
        start local 5 // org.eclipse.jetty.server.Handler adminHandler
        17: .line 122
            aload 0 /* this */
            getfield io.dropwizard.server.SimpleServerFactory.connector:Lio/dropwizard/jetty/ConnectorFactory;
            aload 3 /* server */
        18: .line 123
            aload 1 /* environment */
            invokevirtual io.dropwizard.setup.Environment.metrics:()Lcom/codahale/metrics/MetricRegistry;
        19: .line 124
            aload 1 /* environment */
            invokevirtual io.dropwizard.setup.Environment.getName:()Ljava/lang/String;
        20: .line 125
            aconst_null
        21: .line 122
            invokeinterface io.dropwizard.jetty.ConnectorFactory.build:(Lorg/eclipse/jetty/server/Server;Lcom/codahale/metrics/MetricRegistry;Ljava/lang/String;Lorg/eclipse/jetty/util/thread/ThreadPool;)Lorg/eclipse/jetty/server/Connector;
            astore 6 /* conn */
        start local 6 // org.eclipse.jetty.server.Connector conn
        22: .line 127
            aload 3 /* server */
            aload 6 /* conn */
            invokevirtual org.eclipse.jetty.server.Server.addConnector:(Lorg/eclipse/jetty/server/Connector;)V
        23: .line 129
            new io.dropwizard.jetty.ContextRoutingHandler
            dup
        24: .line 130
            aload 0 /* this */
            getfield io.dropwizard.server.SimpleServerFactory.applicationContextPath:Ljava/lang/String;
            aload 4 /* applicationHandler */
        25: .line 131
            aload 0 /* this */
            getfield io.dropwizard.server.SimpleServerFactory.adminContextPath:Ljava/lang/String;
            aload 5 /* adminHandler */
        26: .line 129
            invokestatic com.google.common.collect.ImmutableMap.of:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/google/common/collect/ImmutableMap;
            invokespecial io.dropwizard.jetty.ContextRoutingHandler.<init>:(Ljava/util/Map;)V
            astore 7 /* routingHandler */
        start local 7 // io.dropwizard.jetty.ContextRoutingHandler routingHandler
        27: .line 133
            aload 0 /* this */
            aload 7 /* routingHandler */
            invokevirtual io.dropwizard.server.SimpleServerFactory.buildGzipHandler:(Lorg/eclipse/jetty/server/Handler;)Lorg/eclipse/jetty/server/Handler;
            astore 8 /* gzipHandler */
        start local 8 // org.eclipse.jetty.server.Handler gzipHandler
        28: .line 134
            aload 3 /* server */
            aload 0 /* this */
            aload 0 /* this */
            aload 3 /* server */
            aload 8 /* gzipHandler */
            aload 1 /* environment */
            invokevirtual io.dropwizard.setup.Environment.getName:()Ljava/lang/String;
            invokevirtual io.dropwizard.server.SimpleServerFactory.addRequestLog:(Lorg/eclipse/jetty/server/Server;Lorg/eclipse/jetty/server/Handler;Ljava/lang/String;)Lorg/eclipse/jetty/server/Handler;
            invokevirtual io.dropwizard.server.SimpleServerFactory.addStatsHandler:(Lorg/eclipse/jetty/server/Handler;)Lorg/eclipse/jetty/server/Handler;
            invokevirtual org.eclipse.jetty.server.Server.setHandler:(Lorg/eclipse/jetty/server/Handler;)V
        29: .line 136
            aload 3 /* server */
            areturn
        end local 8 // org.eclipse.jetty.server.Handler gzipHandler
        end local 7 // io.dropwizard.jetty.ContextRoutingHandler routingHandler
        end local 6 // org.eclipse.jetty.server.Connector conn
        end local 5 // org.eclipse.jetty.server.Handler adminHandler
        end local 4 // org.eclipse.jetty.server.Handler applicationHandler
        end local 3 // org.eclipse.jetty.server.Server server
        end local 2 // org.eclipse.jetty.util.thread.ThreadPool threadPool
        end local 1 // io.dropwizard.setup.Environment environment
        end local 0 // io.dropwizard.server.SimpleServerFactory this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   30     0                this  Lio/dropwizard/server/SimpleServerFactory;
            0   30     1         environment  Lio/dropwizard/setup/Environment;
            3   30     2          threadPool  Lorg/eclipse/jetty/util/thread/ThreadPool;
            4   30     3              server  Lorg/eclipse/jetty/server/Server;
           12   30     4  applicationHandler  Lorg/eclipse/jetty/server/Handler;
           17   30     5        adminHandler  Lorg/eclipse/jetty/server/Handler;
           22   30     6                conn  Lorg/eclipse/jetty/server/Connector;
           27   30     7      routingHandler  Lio/dropwizard/jetty/ContextRoutingHandler;
           28   30     8         gzipHandler  Lorg/eclipse/jetty/server/Handler;
    MethodParameters:
             Name  Flags
      environment  

  public void configure(io.dropwizard.setup.Environment);
    descriptor: (Lio/dropwizard/setup/Environment;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.dropwizard.server.SimpleServerFactory this
        start local 1 // io.dropwizard.setup.Environment environment
         0: .line 141
            getstatic io.dropwizard.server.SimpleServerFactory.LOGGER:Lorg/slf4j/Logger;
            ldc "Registering jersey handler with root path prefix: {}"
            aload 0 /* this */
            getfield io.dropwizard.server.SimpleServerFactory.applicationContextPath:Ljava/lang/String;
            invokeinterface org.slf4j.Logger.info:(Ljava/lang/String;Ljava/lang/Object;)V
         1: .line 142
            aload 1 /* environment */
            invokevirtual io.dropwizard.setup.Environment.getApplicationContext:()Lio/dropwizard/jetty/MutableServletContextHandler;
            aload 0 /* this */
            getfield io.dropwizard.server.SimpleServerFactory.applicationContextPath:Ljava/lang/String;
            invokevirtual io.dropwizard.jetty.MutableServletContextHandler.setContextPath:(Ljava/lang/String;)V
         2: .line 144
            getstatic io.dropwizard.server.SimpleServerFactory.LOGGER:Lorg/slf4j/Logger;
            ldc "Registering admin handler with root path prefix: {}"
            aload 0 /* this */
            getfield io.dropwizard.server.SimpleServerFactory.adminContextPath:Ljava/lang/String;
            invokeinterface org.slf4j.Logger.info:(Ljava/lang/String;Ljava/lang/Object;)V
         3: .line 145
            aload 1 /* environment */
            invokevirtual io.dropwizard.setup.Environment.getAdminContext:()Lio/dropwizard/jetty/MutableServletContextHandler;
            aload 0 /* this */
            getfield io.dropwizard.server.SimpleServerFactory.adminContextPath:Ljava/lang/String;
            invokevirtual io.dropwizard.jetty.MutableServletContextHandler.setContextPath:(Ljava/lang/String;)V
         4: .line 146
            return
        end local 1 // io.dropwizard.setup.Environment environment
        end local 0 // io.dropwizard.server.SimpleServerFactory this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Lio/dropwizard/server/SimpleServerFactory;
            0    5     1  environment  Lio/dropwizard/setup/Environment;
    MethodParameters:
             Name  Flags
      environment  
}
SourceFile: "SimpleServerFactory.java"
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonTypeName(value = "simple")