public.js.common.dao.http_method.js Maven / Gradle / Ivy
window.HttpMethod = new function(){
this.GET = "GET";
this.POST = "POST";
this.PUT = "PUT";
this.DELETE = "DELETE";
this.allowedMethods = [this.GET, this.POST, this.PUT, this.DELETE];
}