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

android.httpPatch.mustache Maven / Gradle / Ivy

There is a newer version: 7.6.0
Show newest version
{{>licenseInfo}}
package {{invokerPackage}};

import org.apache.http.client.methods.*;

public class HttpPatch extends HttpPost {
    public static final String METHOD_PATCH = "PATCH";

    public HttpPatch(final String url) {
        super(url);
    }

    @Override
    public String getMethod() {
        return METHOD_PATCH;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy