All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zandero.rest.reader.ValueReader Maven / Gradle / Ivy

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