![JAR search and dependency download from the Maven repository](/logo.png)
com.ociweb.pronghorn.network.config.HTTPVerbDefaults Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Pronghorn Show documentation
Show all versions of Pronghorn Show documentation
Primary dependency for any project using the Pronghorn framework
The newest version!
package com.ociweb.pronghorn.network.config;
public enum HTTPVerbDefaults implements HTTPVerb{
GET("GET"), //NoSideEffects
HEAD("HEAD"), //NoSideEffects
POST("POST"),
PUT("PUT"), //idempotent
DELETE("DELETE"),//idempotent
TRACE("TRACE"),//NoSideEffects //may be insecure, do not implement
OPTIONS("OPTIONS"),//NoSideEffects
CONNECT("CONNECT"),
PATCH("PATCH");
private CharSequence key;
private HTTPVerbDefaults(CharSequence headerKey) {
key = headerKey;
}
public CharSequence getKey() {
return key;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy