Uses of Class
org.seppiko.commons.utils.http.HttpMethod

Packages that use HttpMethod
Package Description
org.seppiko.commons.utils.http  
  • Uses of HttpMethod in org.seppiko.commons.utils.http

    Methods in org.seppiko.commons.utils.http that return HttpMethod
    Modifier and Type Method Description
    static HttpMethod HttpMethod.valueOf​(java.lang.String name)
    Returns the enum constant of this type with the specified name.
    static HttpMethod[] HttpMethod.values()
    Returns an array containing the constants of this enum type, in the order they are declared.
    Methods in org.seppiko.commons.utils.http with parameters of type HttpMethod
    Modifier and Type Method Description
    static java.net.http.HttpRequest HttpClientUtil.getRequest​(java.lang.String url, HttpMethod method, int timeout, java.util.LinkedHashMap<java.lang.String,​java.util.ArrayList<java.lang.String>> headers, byte[] requestBody)
    Get Request object with byte array
    static java.net.http.HttpRequest HttpClientUtil.getRequest​(java.lang.String url, HttpMethod method, int timeout, java.util.LinkedHashMap<java.lang.String,​java.util.ArrayList<java.lang.String>> headers, java.io.InputStream requestBody)
    Get Request object with inputstream
    static java.net.http.HttpRequest HttpClientUtil.getRequest​(java.lang.String url, HttpMethod method, int timeout, java.util.LinkedHashMap<java.lang.String,​java.util.ArrayList<java.lang.String>> headers, java.lang.String requestBody)
    Get Request object with String