io.soffa.foundation.commons.HttpConstants Maven / Gradle / Ivy
package io.soffa.foundation.commons;
public interface HttpConstants {
String GET = "GET";
String POST = "POST";
String PUT = "PUT";
String PATCH = "PATCH";
String DELETE = "DELETE";
String HEAD = "HEAD";
String OPTIONS = "OPTIONS";
}