@NotThreadSafe public class DefaultRequest<T> extends java.lang.Object implements Request<T>
This class is only intended for internal use inside the AWS client libraries. Callers shouldn't ever interact directly with objects of this class.
| Constructor and Description |
|---|
DefaultRequest(AmazonWebServiceRequest originalRequest,
java.lang.String serviceName)
Constructs a new DefaultRequest with the specified service name and the
original, user facing request object.
|
DefaultRequest(java.lang.String serviceName)
Constructs a new DefaultRequest with the specified service name and no
specified original, user facing request object.
|
| Modifier and Type | Method and Description |
|---|---|
void |
addHeader(java.lang.String name,
java.lang.String value)
Sets the specified header for this request.
|
void |
addParameter(java.lang.String name,
java.lang.String value)
Adds the specified request parameter to this request.
|
AWSRequestMetrics |
getAWSRequestMetrics()
Returns the request metrics.
|
java.io.InputStream |
getContent()
Returns the optional stream containing the payload data to include for
this request.
|
java.net.URI |
getEndpoint()
Returns the service endpoint (ex: "https://ec2.amazonaws.com") to which
this request should be sent.
|
java.util.Map<java.lang.String,java.lang.String> |
getHeaders()
Returns a map of all the headers included in this request.
|
HttpMethodName |
getHttpMethod()
Returns the HTTP method (GET, POST, etc) to use when sending this
request.
|
AmazonWebServiceRequest |
getOriginalRequest()
Returns the original, user facing request object which this internal
request object is representing.
|
java.util.Map<java.lang.String,java.lang.String> |
getParameters()
Returns a map of all parameters in this request.
|
java.lang.String |
getResourcePath()
Returns the path to the resource being requested.
|
java.lang.String |
getServiceName()
Returns the name of the Amazon service this request is for.
|
int |
getTimeOffset()
Returns the optional value for time offset for this request.
|
void |
setAWSRequestMetrics(AWSRequestMetrics metrics)
Bind the request metrics to the request.
|
void |
setContent(java.io.InputStream content)
Sets the optional stream containing the payload data to include for this
request.
|
void |
setEndpoint(java.net.URI endpoint)
Sets the service endpoint (ex: "https://ec2.amazonaws.com") to which this
request should be sent.
|
void |
setHeaders(java.util.Map<java.lang.String,java.lang.String> headers)
Sets all headers, clearing any existing ones.
|
void |
setHttpMethod(HttpMethodName httpMethod)
Sets the HTTP method (GET, POST, etc) to use when sending this request.
|
void |
setParameters(java.util.Map<java.lang.String,java.lang.String> parameters)
Sets all parameters, clearing any existing values.
|
void |
setResourcePath(java.lang.String resourcePath)
Sets the path to the resource being requested.
|
void |
setTimeOffset(int timeOffset)
Sets the optional value for time offset for this request.
|
java.lang.String |
toString() |
Request<T> |
withParameter(java.lang.String name,
java.lang.String value)
Adds the specified request parameter to this request, and returns the
updated request object.
|
Request<T> |
withTimeOffset(int timeOffset)
Sets the optional value for time offset for this request.
|
public DefaultRequest(AmazonWebServiceRequest originalRequest, java.lang.String serviceName)
serviceName - The name of the service to which this request is being sent.originalRequest - The original, user facing, AWS request being represented by
this internal request object.public DefaultRequest(java.lang.String serviceName)
serviceName - The name of the service to which this request is being sent.public AmazonWebServiceRequest getOriginalRequest()
getOriginalRequest in interface Request<T>public void addHeader(java.lang.String name,
java.lang.String value)
RequestaddHeader in interface Request<T>name - The name of the header to set.value - The header's value.Request.addHeader(java.lang.String, java.lang.String)public java.util.Map<java.lang.String,java.lang.String> getHeaders()
RequestgetHeaders in interface Request<T>Request.getHeaders()public void setResourcePath(java.lang.String resourcePath)
RequestsetResourcePath in interface Request<T>resourcePath - The path to the resource being requested.Request.setResourcePath(java.lang.String)public java.lang.String getResourcePath()
RequestgetResourcePath in interface Request<T>Request.getResourcePath()public void addParameter(java.lang.String name,
java.lang.String value)
RequestaddParameter in interface Request<T>name - The name of the request parameter.value - The value of the request parameter.Request.addParameter(java.lang.String, java.lang.String)public java.util.Map<java.lang.String,java.lang.String> getParameters()
RequestgetParameters in interface Request<T>Request.getParameters()public Request<T> withParameter(java.lang.String name, java.lang.String value)
RequestwithParameter in interface Request<T>name - The name of the request parameter.value - The value of the request parameter.Request.withParameter(java.lang.String, java.lang.String)public HttpMethodName getHttpMethod()
RequestgetHttpMethod in interface Request<T>Request.getHttpMethod()public void setHttpMethod(HttpMethodName httpMethod)
RequestsetHttpMethod in interface Request<T>httpMethod - The HTTP method to use when sending this request.Request.setHttpMethod(com.amazonaws.http.HttpMethodName)public void setEndpoint(java.net.URI endpoint)
RequestsetEndpoint in interface Request<T>endpoint - The service endpoint to which this request should be sent.Request.setEndpoint(java.net.URI)public java.net.URI getEndpoint()
RequestgetEndpoint in interface Request<T>Request.getEndpoint()public java.lang.String getServiceName()
RequestgetServiceName in interface Request<T>Request.getServiceName()public java.io.InputStream getContent()
RequestgetContent in interface Request<T>Request.getContent()public void setContent(java.io.InputStream content)
RequestsetContent in interface Request<T>content - The optional stream containing the payload data to include for
this request.Request.setContent(java.io.InputStream)public void setHeaders(java.util.Map<java.lang.String,java.lang.String> headers)
RequestsetHeaders in interface Request<T>Request.setHeaders(java.util.Map)public void setParameters(java.util.Map<java.lang.String,java.lang.String> parameters)
RequestsetParameters in interface Request<T>Request.setParameters(java.util.Map)public int getTimeOffset()
RequestgetTimeOffset in interface Request<T>Request.getTimeOffset()public void setTimeOffset(int timeOffset)
RequestsetTimeOffset in interface Request<T>timeOffset - The optional value for time offset (in seconds) for this request.Request.setTimeOffset(int)public Request<T> withTimeOffset(int timeOffset)
RequestwithTimeOffset in interface Request<T>Request.setTimeOffset(int)public java.lang.String toString()
toString in class java.lang.Objectpublic AWSRequestMetrics getAWSRequestMetrics()
RequestgetAWSRequestMetrics in interface Request<T>public void setAWSRequestMetrics(AWSRequestMetrics metrics)
RequestsetAWSRequestMetrics in interface Request<T>