io.keen.client.java.http.HttpMethods Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of keen-client-java-core Show documentation
Show all versions of keen-client-java-core Show documentation
Java Client Core Library for Keen
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";
}