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

com.networknt.client.model.HttpVerb Maven / Gradle / Ivy

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy