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

com.firefly.mvc.web.HttpMethod Maven / Gradle / Ivy

There is a newer version: 4.0.3.2
Show newest version
package com.firefly.mvc.web;

public interface HttpMethod {
	String DELETE = "DELETE";
	String HEAD = "HEAD";
	String GET = "GET";
	String OPTIONS = "OPTIONS";
	String POST = "POST";
	String PUT = "PUT";
	String PATCH = "PATCH";
	String TRACE = "TRACE";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy