Interface ClientHttpRequest
- All Superinterfaces:
HttpMessage
,ReactiveHttpOutputMessage
- All Known Implementing Classes:
AbstractClientHttpRequest
,ClientHttpRequestDecorator
,MockClientHttpRequest
public interface ClientHttpRequest extends ReactiveHttpOutputMessage
Represents a client-side reactive HTTP request.- Since:
- 5.0
- Author:
- Arjen Poutsma, Brian Clozel
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MultiValueMap<String,HttpCookie>
getCookies()
Return a mutable map of request cookies to send to the server.HttpMethod
getMethod()
Return the HTTP method of the request.URI
getURI()
Return the URI of the request.Methods inherited from interface org.springframework.http.HttpMessage
getHeaders
Methods inherited from interface org.springframework.http.ReactiveHttpOutputMessage
beforeCommit, bufferFactory, isCommitted, setComplete, writeAndFlushWith, writeWith
Method Detail
getMethod
HttpMethod getMethod()
Return the HTTP method of the request.
getCookies
MultiValueMap<String,HttpCookie> getCookies()
Return a mutable map of request cookies to send to the server.