io.vertx.ext.web.validation.builder.BodyProcessorFactory Maven / Gradle / Ivy
The newest version!
package io.vertx.ext.web.validation.builder;
import io.vertx.codegen.annotations.GenIgnore;
import io.vertx.codegen.annotations.VertxGen;
import io.vertx.ext.web.validation.impl.body.BodyProcessor;
import io.vertx.json.schema.SchemaRepository;
/**
* This interface is used to build body processors.
*
* Look at {@link Bodies} for all available factories.
*/
@VertxGen
public interface BodyProcessorFactory {
@GenIgnore(GenIgnore.PERMITTED_TYPE)
BodyProcessor create(SchemaRepository schemaRepository);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy