public abstract class org.springframework.boot.web.servlet.RegistrationBean implements org.springframework.boot.web.servlet.ServletContextInitializer, org.springframework.core.Ordered
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.springframework.boot.web.servlet.RegistrationBean
  super_class: java.lang.Object
{
  private static final org.apache.commons.logging.Log logger;
    descriptor: Lorg/apache/commons/logging/Log;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

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

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 40
            ldc Lorg/springframework/boot/web/servlet/RegistrationBean;
            invokestatic org.apache.commons.logging.LogFactory.getLog:(Ljava/lang/Class;)Lorg/apache/commons/logging/Log;
            putstatic org.springframework.boot.web.servlet.RegistrationBean.logger:Lorg/apache/commons/logging/Log;
            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 // org.springframework.boot.web.servlet.RegistrationBean this
         0: .line 38
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 42
            aload 0 /* this */
            ldc 2147483647
            putfield org.springframework.boot.web.servlet.RegistrationBean.order:I
         2: .line 44
            aload 0 /* this */
            iconst_1
            putfield org.springframework.boot.web.servlet.RegistrationBean.enabled:Z
         3: .line 38
            return
        end local 0 // org.springframework.boot.web.servlet.RegistrationBean this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/springframework/boot/web/servlet/RegistrationBean;

  public final void onStartup(ServletContext);
    descriptor: (LServletContext;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.springframework.boot.web.servlet.RegistrationBean this
         0: .line 47
            new java.lang.Error
            dup
            ldc "Unresolved compilation problems: \n\tServletContext cannot be resolved to a type\n\tServletException cannot be resolved to a type\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.springframework.boot.web.servlet.RegistrationBean this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/boot/web/servlet/RegistrationBean;
    Exceptions:
      throws ServletException
    MethodParameters:
                Name  Flags
      servletContext  

  protected abstract java.lang.String getDescription();
    descriptor: ()Ljava/lang/String;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT

  protected void register(java.lang.String, ServletContext);
    descriptor: (Ljava/lang/String;LServletContext;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.springframework.boot.web.servlet.RegistrationBean this
         0: .line 67
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tServletContext cannot be resolved to a type\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.springframework.boot.web.servlet.RegistrationBean this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/boot/web/servlet/RegistrationBean;
    MethodParameters:
                Name  Flags
      description     
      servletContext  

  public void setEnabled(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.boot.web.servlet.RegistrationBean this
        start local 1 // boolean enabled
         0: .line 74
            aload 0 /* this */
            iload 1 /* enabled */
            putfield org.springframework.boot.web.servlet.RegistrationBean.enabled:Z
         1: .line 75
            return
        end local 1 // boolean enabled
        end local 0 // org.springframework.boot.web.servlet.RegistrationBean this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/springframework/boot/web/servlet/RegistrationBean;
            0    2     1  enabled  Z
    MethodParameters:
         Name  Flags
      enabled  

  public boolean isEnabled();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.boot.web.servlet.RegistrationBean this
         0: .line 82
            aload 0 /* this */
            getfield org.springframework.boot.web.servlet.RegistrationBean.enabled:Z
            ireturn
        end local 0 // org.springframework.boot.web.servlet.RegistrationBean this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/boot/web/servlet/RegistrationBean;

  public void setOrder(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.boot.web.servlet.RegistrationBean this
        start local 1 // int order
         0: .line 90
            aload 0 /* this */
            iload 1 /* order */
            putfield org.springframework.boot.web.servlet.RegistrationBean.order:I
         1: .line 91
            return
        end local 1 // int order
        end local 0 // org.springframework.boot.web.servlet.RegistrationBean this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/springframework/boot/web/servlet/RegistrationBean;
            0    2     1  order  I
    MethodParameters:
       Name  Flags
      order  

  public int getOrder();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.boot.web.servlet.RegistrationBean this
         0: .line 99
            aload 0 /* this */
            getfield org.springframework.boot.web.servlet.RegistrationBean.order:I
            ireturn
        end local 0 // org.springframework.boot.web.servlet.RegistrationBean this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/boot/web/servlet/RegistrationBean;
}
SourceFile: "RegistrationBean.java"