
net.javapla.jawn.core.Parser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jawn-core Show documentation
Show all versions of jawn-core Show documentation
java-web-planet / jawn - A simple web framework in Java
The newest version!
package net.javapla.jawn.core;
import java.lang.reflect.Type;
/**
* Parsing incoming messages/request body
*
*/
public interface Parser {
Object parse(Context ctx, Type type) throws Exception;
interface ParserProvider {
Parser get(MediaType type);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy