public interface io.vertx.ext.web.handler.BodyHandler extends io.vertx.core.Handler<io.vertx.ext.web.RoutingContext>
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: io.vertx.ext.web.handler.BodyHandler
  super_class: java.lang.Object
{
  public static final long DEFAULT_BODY_LIMIT;
    descriptor: J
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: -1

  public static final java.lang.String DEFAULT_UPLOADS_DIRECTORY;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "file-uploads"

  public static final boolean DEFAULT_MERGE_FORM_ATTRIBUTES;
    descriptor: Z
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  public static final boolean DEFAULT_DELETE_UPLOADED_FILES_ON_END;
    descriptor: Z
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  public static final boolean DEFAULT_PREALLOCATE_BODY_BUFFER;
    descriptor: Z
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  public static io.vertx.ext.web.handler.BodyHandler create();
    descriptor: ()Lio/vertx/ext/web/handler/BodyHandler;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 66
            new io.vertx.ext.web.handler.impl.BodyHandlerImpl
            dup
            invokespecial io.vertx.ext.web.handler.impl.BodyHandlerImpl.<init>:()V
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static io.vertx.ext.web.handler.BodyHandler create(boolean);
    descriptor: (Z)Lio/vertx/ext/web/handler/BodyHandler;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // boolean handleFileUploads
         0: .line 76
            new io.vertx.ext.web.handler.impl.BodyHandlerImpl
            dup
            iload 0 /* handleFileUploads */
            invokespecial io.vertx.ext.web.handler.impl.BodyHandlerImpl.<init>:(Z)V
            areturn
        end local 0 // boolean handleFileUploads
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    1     0  handleFileUploads  Z
    MethodParameters:
                   Name  Flags
      handleFileUploads  

  public static io.vertx.ext.web.handler.BodyHandler create(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/web/handler/BodyHandler;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.lang.String uploadDirectory
         0: .line 86
            new io.vertx.ext.web.handler.impl.BodyHandlerImpl
            dup
            aload 0 /* uploadDirectory */
            invokespecial io.vertx.ext.web.handler.impl.BodyHandlerImpl.<init>:(Ljava/lang/String;)V
            areturn
        end local 0 // java.lang.String uploadDirectory
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0  uploadDirectory  Ljava/lang/String;
    MethodParameters:
                 Name  Flags
      uploadDirectory  

  public abstract io.vertx.ext.web.handler.BodyHandler setHandleFileUploads(boolean);
    descriptor: (Z)Lio/vertx/ext/web/handler/BodyHandler;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
                   Name  Flags
      handleFileUploads  

  public abstract io.vertx.ext.web.handler.BodyHandler setBodyLimit(long);
    descriptor: (J)Lio/vertx/ext/web/handler/BodyHandler;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
           Name  Flags
      bodyLimit  

  public abstract io.vertx.ext.web.handler.BodyHandler setUploadsDirectory(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/web/handler/BodyHandler;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
                  Name  Flags
      uploadsDirectory  

  public abstract io.vertx.ext.web.handler.BodyHandler setMergeFormAttributes(boolean);
    descriptor: (Z)Lio/vertx/ext/web/handler/BodyHandler;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
                     Name  Flags
      mergeFormAttributes  

  public abstract io.vertx.ext.web.handler.BodyHandler setDeleteUploadedFilesOnEnd(boolean);
    descriptor: (Z)Lio/vertx/ext/web/handler/BodyHandler;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
                          Name  Flags
      deleteUploadedFilesOnEnd  

  public abstract io.vertx.ext.web.handler.BodyHandler setPreallocateBodyBuffer(boolean);
    descriptor: (Z)Lio/vertx/ext/web/handler/BodyHandler;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
                         Name  Flags
      isPreallocateBodyBuffer  
}
Signature: Ljava/lang/Object;Lio/vertx/core/Handler<Lio/vertx/ext/web/RoutingContext;>;
SourceFile: "BodyHandler.java"
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.VertxGen()