io.hanko.sdk.http.HttpMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java SDK for accessing the Hanko Authentication API
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