Package | Description |
---|---|
feign |
Modifier and Type | Method and Description |
---|---|
Request.HttpMethod |
Request.httpMethod()
Http Method for the request.
|
Request.HttpMethod |
RetryableException.method() |
static Request.HttpMethod |
Request.HttpMethod.valueOf(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.
|
Modifier and Type | Method and Description |
---|---|
static Request |
Request.create(Request.HttpMethod httpMethod,
String url,
Map<String,Collection<String>> headers,
byte[] body,
Charset charset)
Deprecated.
|
static Request |
Request.create(Request.HttpMethod httpMethod,
String url,
Map<String,Collection<String>> headers,
byte[] body,
Charset charset,
RequestTemplate requestTemplate)
Builds a Request.
|
static Request |
Request.create(Request.HttpMethod httpMethod,
String url,
Map<String,Collection<String>> headers,
Request.Body body,
RequestTemplate requestTemplate)
Builds a Request.
|
RequestTemplate |
RequestTemplate.method(Request.HttpMethod method)
Set the Http Method.
|
Constructor and Description |
---|
RetryableException(int status,
String message,
Request.HttpMethod httpMethod,
Date retryAfter,
Request request) |
RetryableException(int status,
String message,
Request.HttpMethod httpMethod,
Throwable cause,
Date retryAfter,
Request request) |
Copyright © 2012–2023 OpenFeign. All rights reserved.