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

org.sourcelab.github.client.request.GetRequest Maven / Gradle / Ivy

The newest version!

package org.sourcelab.github.client.request;

/**
 * Abstract representation of a GET http request.
 *
 * @param  The parsed response object from the request.
 */
public abstract class GetRequest implements Request {
    @Override
    public HttpMethod getMethod() {
        return HttpMethod.GET;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy