Uses of Class
feign.Request.HttpMethod
-
Packages that use Request.HttpMethod Package Description feign -
-
Uses of Request.HttpMethod in feign
Methods in feign that return Request.HttpMethod Modifier and Type Method Description Request.HttpMethod
Request. httpMethod()
Http Method for the request.Request.HttpMethod
RetryableException. method()
static Request.HttpMethod
Request.HttpMethod. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Request.HttpMethod[]
Request.HttpMethod. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in feign with parameters of type Request.HttpMethod Modifier and Type Method Description static Request
Request. create(Request.HttpMethod httpMethod, java.lang.String url, java.util.Map<java.lang.String,java.util.Collection<java.lang.String>> headers, byte[] body, java.nio.charset.Charset charset)
Builds a Request.static Request
Request. create(Request.HttpMethod httpMethod, java.lang.String url, java.util.Map<java.lang.String,java.util.Collection<java.lang.String>> headers, Request.Body body)
Builds a Request.RequestTemplate
RequestTemplate. method(Request.HttpMethod method)
Set the Http Method.Constructors in feign with parameters of type Request.HttpMethod Constructor Description RetryableException(java.lang.String message, Request.HttpMethod httpMethod, java.lang.Throwable cause, java.util.Date retryAfter)
RetryableException(java.lang.String message, Request.HttpMethod httpMethod, java.util.Date retryAfter)
-