
com.zandero.rest.reader.ValueReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest.vertx Show documentation
Show all versions of rest.vertx Show documentation
JAX-RS REST annotation processor for vert.x verticals
The newest version!
package com.zandero.rest.reader;
/**
* Request body reader interface
* implement to read request body and converting request body to a given object type
*
* Use RestRouter.getReaders().register(...) to register a global reader
* or use @RequestReader annotation to associate REST with given reader
*/
public interface ValueReader {
T read(String value, Class type) throws Throwable;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy