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

com.fengwenyi.javalib.constant.RequestMethodConstant Maven / Gradle / Ivy

There is a newer version: 3.0.1
Show newest version
package com.fengwenyi.javalib.constant;

/**
 * http 请求相关的常量
 * @author Wenyi Feng
 * @since 2018-09-25
 */
public class RequestMethodConstant {

    /**
     * get
     */
    public static final String GET = "GET";

    /**
     * post
     */
    public static final String POST = "POST";

    /**
     * put
     */
    public static final String PUT = "PUT";

    /**
     * delete
     */
    public static final String DELETE = "DELETE";

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy