com.fastchar.core.FastHttpMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastchar Show documentation
Show all versions of fastchar Show documentation
FastChar is Web+ORM Framework in Java.
package com.fastchar.core;
/**
* Http的方法属性
*/
public class FastHttpMethod {
public static final String POST = "post";
public static final String GET = "get";
public static final String OPTIONS = "options";
public static final String HEAD = "head";
public static final String PUT = "put";
public static final String DELETE = "delete";
public static final String CONNECT = "connect";
public static final String TRACE = "trace";
public static final String PATCH = "patch";
public static final String COPY = "copy";
public static final String LINK = "link";
public static final String UNLINK = "unlink";
public static final String WRAPPED = "wrapped";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy