
org.sourcelab.github.client.request.PostRequest Maven / Gradle / Ivy
The newest version!
package org.sourcelab.github.client.request;
import org.sourcelab.github.client.exception.RequestParsingException;
/**
* Abstract representation of a POST http request.
*
* @param The parsed response object from the request.
*/
public abstract class PostRequest implements Request {
@Override
public HttpMethod getMethod() {
return HttpMethod.POST;
}
@Override
public String getRequestBody() throws RequestParsingException {
return "";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy