com.fengwenyi.javalib.constant.RequestMethodConstant Maven / Gradle / Ivy
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