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

io.hanko.sdk.http.HttpMethod Maven / Gradle / Ivy

The newest version!
package io.hanko.sdk.http;

/**
 * Enumeration of HTTP methods.
 */
public enum HttpMethod {
    /**
     * Represents a HTTP GET method.
     */
    GET,
    /**
     * Represents a HTTP POST method.
     */
    POST,
    /**
     * Represents a HTTP PUT method.
     */
    PUT,
    /**
     * Represents a HTTP DELETE method.
     */
    DELETE;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy