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

io.keen.client.java.http.HttpMethods Maven / Gradle / Ivy

There is a newer version: 6.0.0
Show newest version
package io.keen.client.java.http;

/**
 * Constants for the HTTP request methods this project uses. These match what is expected by
 * HttpURLConnection.
 *
 * @author masojus
 */
public final class HttpMethods {
    private HttpMethods() {}

    public final static String GET = "GET";
    public final static String POST = "POST";
    public final static String PUT = "PUT";
    public final static String DELETE = "DELETE";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy