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

oauth.signpost.http.HttpRequest Maven / Gradle / Ivy

package oauth.signpost.http;

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

public interface HttpRequest {

    String getMethod();

    String getRequestUrl();

    void setHeader(String name, String value);

    String getHeader(String name);

    InputStream getMessagePayload() throws IOException;

    String getContentType();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy