Class Bodies
- java.lang.Object
-
- io.vertx.rxjava3.ext.web.validation.builder.Bodies
-
public class Bodies extends Object
In this interface you can find all availableBodyProcessorFactory
to use inValidationHandlerBuilder
.
To create new schemas using , look at the docs of vertx-json-schema
NOTE: This class has been automatically generated from the
original
non RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<Bodies>
__TYPE_ARG
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
static BodyProcessorFactory
formUrlEncoded(ObjectSchemaBuilder schemaBuilder)
Create a formapplication/x-www-form-urlencoded
processorBodies
getDelegate()
int
hashCode()
static BodyProcessorFactory
json(SchemaBuilder schemaBuilder)
Create a json body processorstatic BodyProcessorFactory
multipartFormData(ObjectSchemaBuilder schemaBuilder)
Create a formmultipart/form-data
processorstatic Bodies
newInstance(Bodies arg)
static BodyProcessorFactory
textPlain(StringSchemaBuilder schemaBuilder)
Create atext/plain
body processorString
toString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final io.vertx.lang.rx.TypeArg<Bodies> __TYPE_ARG
-
-
Method Detail
-
getDelegate
public Bodies getDelegate()
-
json
public static BodyProcessorFactory json(SchemaBuilder schemaBuilder)
Create a json body processor- Parameters:
schemaBuilder
-- Returns:
-
textPlain
public static BodyProcessorFactory textPlain(StringSchemaBuilder schemaBuilder)
Create atext/plain
body processor- Parameters:
schemaBuilder
-- Returns:
-
formUrlEncoded
public static BodyProcessorFactory formUrlEncoded(ObjectSchemaBuilder schemaBuilder)
Create a formapplication/x-www-form-urlencoded
processor- Parameters:
schemaBuilder
-- Returns:
-
multipartFormData
public static BodyProcessorFactory multipartFormData(ObjectSchemaBuilder schemaBuilder)
Create a formmultipart/form-data
processor- Parameters:
schemaBuilder
-- Returns:
-
-