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

com.bluenimble.platform.api.ApiRequestBodyReader Maven / Gradle / Ivy

There is a newer version: 2.50.0
Show newest version
package com.bluenimble.platform.api;

import java.io.IOException;
import java.io.InputStream;
import java.io.Serializable;

public interface ApiRequestBodyReader extends Serializable {
	
	Object 		read 		(InputStream proxy, String contentType, long length) throws IOException;
	String []	mediaTypes 	();
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy