Interface ClientHttpRequest
- All Superinterfaces:
- HttpMessage, ReactiveHttpOutputMessage
- All Known Implementing Classes:
- AbstractClientHttpRequest, ClientHttpRequestDecorator, MockClientHttpRequest
Represents a client-side reactive HTTP request.
- Since:
- 5.0
- Author:
- Arjen Poutsma, Brian Clozel
- 
Method SummaryModifier and TypeMethodDescriptionReturn a mutable map of the request attributes.Return a mutable map of request cookies to send to the server.Return the HTTP method of the request.<T> TReturn the request from the underlying HTTP library.getURI()Return the URI of the request.Methods inherited from interface HttpMessagegetHeadersMethods inherited from interface ReactiveHttpOutputMessagebeforeCommit, bufferFactory, isCommitted, setComplete, writeAndFlushWith, writeWith
- 
Method Details- 
getMethodHttpMethod getMethod()Return the HTTP method of the request.
- 
getURIURI getURI()Return the URI of the request.
- 
getCookiesMultiValueMap<String, HttpCookie> getCookies()Return a mutable map of request cookies to send to the server.
- 
getAttributes
- 
getNativeRequest<T> T getNativeRequest()Return the request from the underlying HTTP library.- Type Parameters:
- T- the expected type of the request to cast to
- Since:
- 5.3
 
 
-