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

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

The newest version!

package org.sourcelab.github.client.request;

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy