Package org.mapfish.print.http
Interface ConfigurableRequest
- All Superinterfaces:
org.springframework.http.client.ClientHttpRequest
,org.springframework.http.HttpMessage
,org.springframework.http.HttpOutputMessage
,org.springframework.http.HttpRequest
- All Known Implementing Classes:
MfClientHttpRequestFactoryImpl.Request
public interface ConfigurableRequest
extends org.springframework.http.client.ClientHttpRequest
A request object that provides low-level access so that the request can be configured for
proxying, authentication, etc...
-
Method Summary
Modifier and TypeMethodDescriptionorg.apache.http.client.methods.HttpRequestBase
Obtain the request object.void
setConfiguration
(Configuration configuration) Set the current configuration object.Methods inherited from interface org.springframework.http.client.ClientHttpRequest
execute
Methods inherited from interface org.springframework.http.HttpMessage
getHeaders
Methods inherited from interface org.springframework.http.HttpOutputMessage
getBody
Methods inherited from interface org.springframework.http.HttpRequest
getMethod, getMethodValue, getURI
-
Method Details
-
getUnderlyingRequest
org.apache.http.client.methods.HttpRequestBase getUnderlyingRequest()Obtain the request object. -
setConfiguration
Set the current configuration object. This should only be called byConfigFileResolvingHttpRequestFactory
.- Parameters:
configuration
- the config object for the current print job.
-