ca.bitcoco.jsk.http.HttpMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsk-starter Show documentation
Show all versions of jsk-starter Show documentation
Common service for bitcoco usage
package ca.bitcoco.jsk.http;
public enum HttpMethod {
GET("GET"),
POST("POST"),
PUT("PUT"),
PATCH("PATCH"),
DELETE("DELETE");
private String key;
private HttpMethod(String key) {
this.key = key;
}
public String key() {
return this.key;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy