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

com.firefly.server.http2.servlet.HttpStringBodyRequest Maven / Gradle / Ivy

package com.firefly.server.http2.servlet;

import com.firefly.utils.json.JsonArray;
import com.firefly.utils.json.JsonObject;

public interface HttpStringBodyRequest {

	public String getStringBody();
	
	public String getStringBody(String charset);
	
	public  T getJsonBody(Class clazz);
	
	public JsonObject getJsonObjectBody();
	
	public JsonArray getJsonArrayBody();
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy