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

net.lenni0451.commons.httpclient.requests.impl.PutRequest Maven / Gradle / Ivy

The newest version!
package net.lenni0451.commons.httpclient.requests.impl;

import net.lenni0451.commons.httpclient.constants.RequestMethods;
import net.lenni0451.commons.httpclient.requests.HttpContentRequest;

import java.net.MalformedURLException;
import java.net.URL;

public class PutRequest extends HttpContentRequest {

    public PutRequest(final String url) throws MalformedURLException {
        super(RequestMethods.PUT, url);
    }

    public PutRequest(final URL url) {
        super(RequestMethods.PUT, url);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy