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

tech.msop.core.http.Method Maven / Gradle / Ivy

The newest version!
package tech.msop.core.http;

/**
 * http method
 *
 * @author ruozhuliufeng
 */
public interface Method {
    String GET = "GET";
    String POST = "POST";
    String PATCH = "PATCH";
    String PUT = "PUT";
    String DELETE = "DELETE";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy