| Package | Description |
|---|---|
| org.springframework.http.client |
Contains an abstraction over client-side HTTP.
|
| Modifier and Type | Method and Description |
|---|---|
<T,P extends org.reactivestreams.Publisher<T>> |
MultipartBodyBuilder.asyncPart(java.lang.String name,
P publisher,
java.lang.Class<T> elementClass)
Adds a
Publisher part to this builder, allowing for further header customization with
the returned MultipartBodyBuilder.PartBuilder. |
<T,P extends org.reactivestreams.Publisher<T>> |
MultipartBodyBuilder.asyncPart(java.lang.String name,
P publisher,
org.springframework.core.ParameterizedTypeReference<T> typeReference)
Adds a
Publisher part to this builder, allowing for further header customization with
the returned MultipartBodyBuilder.PartBuilder. |
MultipartBodyBuilder.PartBuilder |
MultipartBodyBuilder.PartBuilder.header(java.lang.String headerName,
java.lang.String... headerValues)
Add the given part-specific header values under the given name.
|
MultipartBodyBuilder.PartBuilder |
MultipartBodyBuilder.PartBuilder.headers(java.util.function.Consumer<HttpHeaders> headersConsumer)
Manipulate the part's headers with the given consumer.
|
MultipartBodyBuilder.PartBuilder |
MultipartBodyBuilder.part(java.lang.String name,
java.lang.Object part)
Adds a part to this builder, allowing for further header customization with the returned
MultipartBodyBuilder.PartBuilder. |
MultipartBodyBuilder.PartBuilder |
MultipartBodyBuilder.part(java.lang.String name,
java.lang.Object part,
MediaType contentType)
Adds a part to this builder, allowing for further header customization with the returned
MultipartBodyBuilder.PartBuilder. |