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

org.javawebstack.httpserver.helper.HttpMethod Maven / Gradle / Ivy

Go to download

This library provides a routing and request mapping stack on top of the well known and industry proven eclipse jetty http server. It also supports websockets.

There is a newer version: 1.0.2
Show newest version
package org.javawebstack.httpserver.helper;

public enum HttpMethod {
    GET,
    POST,
    PUT,
    PATCH,
    DELETE,
    HEAD,
    OPTIONS,
    CONNECT,
    MOVE,
    TRACE,
    WEBSOCKET
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy