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

com.iprogrammerr.gentle.request.Request Maven / Gradle / Ivy

package com.iprogrammerr.gentle.request;

import java.util.List;

public interface Request {

	String method();

	String url();

	List
headers(); void addHeader(Header header); byte[] body() throws Exception; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy