com.networknt.client.model.HttpVerb Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client Show documentation
Show all versions of client Show documentation
A client module that is used by API consumer to call an API or from an API calling another API.
The newest version!
package com.networknt.client.model;
import io.undertow.util.HttpString;
import io.undertow.util.Methods;
public enum HttpVerb {
GET(Methods.GET),
POST(Methods.POST),
PUT(Methods.PUT),
DELETE(Methods.DELETE),
HEAD(Methods.HEAD),
OPTIONS(Methods.OPTIONS),
TRACE(Methods.TRACE),
PATCH(Methods.PATCH),
CONNECT(Methods.CONNECT);
public final HttpString verbHttpString;
HttpVerb(HttpString verb) {
this.verbHttpString = verb;
}
}