|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.http.client.AbstractClientHttpRequest
public abstract class AbstractClientHttpRequest
Abstract base for ClientHttpRequest
that makes sure that headers and body are not written multiple times.
Constructor Summary | |
---|---|
AbstractClientHttpRequest()
|
Method Summary | |
---|---|
ClientHttpResponse |
execute()
Execute this request, resulting in a ClientHttpResponse that can be read. |
protected abstract ClientHttpResponse |
executeInternal(HttpHeaders headers)
Abstract template method that writes the given headers and content to the HTTP request. |
OutputStream |
getBody()
Return the body of the message as an output stream. |
protected abstract OutputStream |
getBodyInternal(HttpHeaders headers)
Abstract template method that returns the body. |
HttpHeaders |
getHeaders()
Return the headers of this message. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface org.springframework.http.HttpRequest |
---|
getMethod, getURI |
Constructor Detail |
---|
public AbstractClientHttpRequest()
Method Detail |
---|
public final HttpHeaders getHeaders()
HttpMessage
getHeaders
in interface HttpMessage
public final OutputStream getBody() throws IOException
HttpOutputMessage
getBody
in interface HttpOutputMessage
IOException
- in case of I/O Errorspublic final ClientHttpResponse execute() throws IOException
ClientHttpRequest
ClientHttpResponse
that can be read.
execute
in interface ClientHttpRequest
IOException
- in case of I/O errorsprotected abstract OutputStream getBodyInternal(HttpHeaders headers) throws IOException
headers
- the HTTP headers
IOException
protected abstract ClientHttpResponse executeInternal(HttpHeaders headers) throws IOException
headers
- the HTTP headers
IOException
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |