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

com.hn.im.easemob.comm.constant.HTTPMethod Maven / Gradle / Ivy

There is a newer version: 1.0.18
Show newest version
package com.hn.im.easemob.comm.constant;

/**
 * HTTP Methods
 * 
 * @author Lynch 2014-09-15
 * 
 */
public interface HTTPMethod {

	/** METHOD_DELETE value:GET */
	public static String METHOD_GET = "GET";

	/** METHOD_DELETE value:POST */
	public static String METHOD_POST = "POST";

	/** METHOD_DELETE value:PUT */
	public static String METHOD_PUT = "PUT";

	/** METHOD_DELETE value:DELETE */
	public static String METHOD_DELETE = "DELETE";

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy