com.yoti.api.client.spi.remote.call.HttpMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yoti-sdk-api Show documentation
Show all versions of yoti-sdk-api Show documentation
Java SDK for simple integration with the Yoti platform
The newest version!
package com.yoti.api.client.spi.remote.call;
import static java.util.Arrays.asList;
import static java.util.Collections.unmodifiableList;
import java.util.List;
public class HttpMethod {
public static final String HTTP_GET = "GET";
public static final String HTTP_POST = "POST";
public static final String HTTP_PUT = "PUT";
public static final String HTTP_PATCH = "PATCH";
public static final String HTTP_DELETE = "DELETE";
public static final List SUPPORTED_HTTP_METHODS = unmodifiableList(asList(HTTP_POST, HTTP_PUT, HTTP_PATCH, HTTP_GET, HTTP_DELETE));
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy