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

public.js.common.dao.http_method.js Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
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];
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy