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

net.javapla.jawn.core.Parser Maven / Gradle / Ivy

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