Class ValidationHandler
- java.lang.Object
- 
- io.vertx.rxjava3.ext.web.validation.ValidationHandler
 
- 
- All Implemented Interfaces:
- Handler<RoutingContext>
 
 public class ValidationHandler extends Object implements Handler<RoutingContext> This is the entry point of this module. Provides the parsing, validation and puts the parsed objects into .
 You can easily build a new validation handler using a , that you can create with .
 For more info read the doc.
 NOTE: This class has been automatically generated from theoriginalnon RX-ified interface using Vert.x codegen.
- 
- 
Field SummaryFields Modifier and Type Field Description static TypeArg<ValidationHandler>__TYPE_ARGstatic StringREQUEST_CONTEXT_KEY
 - 
Constructor SummaryConstructors Constructor Description ValidationHandler(ValidationHandler delegate)ValidationHandler(Object delegate)
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static ValidationHandlerBuilderbuilder(SchemaParser parser)Deprecated.booleanequals(Object o)ValidationHandlergetDelegate()voidhandle(RoutingContext event)Something has happened, so handle it.inthashCode()static ValidationHandlernewInstance(ValidationHandler arg)StringtoString()
 
- 
- 
- 
Field Detail- 
__TYPE_ARGpublic static final TypeArg<ValidationHandler> __TYPE_ARG 
 - 
REQUEST_CONTEXT_KEYpublic static final String REQUEST_CONTEXT_KEY - See Also:
- Constant Field Values
 
 
- 
 - 
Constructor Detail- 
ValidationHandlerpublic ValidationHandler(ValidationHandler delegate) 
 - 
ValidationHandlerpublic ValidationHandler(Object delegate) 
 
- 
 - 
Method Detail- 
getDelegatepublic ValidationHandler getDelegate() 
 - 
handlepublic void handle(RoutingContext event) Something has happened, so handle it.- Specified by:
- handlein interface- Handler<RoutingContext>
- Parameters:
- event- the event to handle
 
 - 
builder@Deprecated public static ValidationHandlerBuilder builder(SchemaParser parser) Deprecated.- Parameters:
- parser- a SchemaParser
- Returns:
- an instance of .
 
 - 
newInstancepublic static ValidationHandler newInstance(ValidationHandler arg) 
 
- 
 
-