io.vertx.ext.web.api.validation.ContainerDeserializer Maven / Gradle / Ivy
package io.vertx.ext.web.api.validation;
import io.vertx.codegen.annotations.VertxGen;
import java.util.List;
import java.util.Map;
/**
* Interface that define methods for deserialization of array and objects
*
* @author Francesco Guardiani @slinkydeveloper
* @deprecated You should use the new module vertx-web-openapi
*/
@VertxGen
@Deprecated
public interface ContainerDeserializer {
List deserializeArray(String serialized) throws ValidationException;
Map deserializeObject(String serialized) throws ValidationException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy