com.netease.cloud.http.HttpRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nos-sdk-java-publiccloud Show documentation
Show all versions of nos-sdk-java-publiccloud Show documentation
nos java sdk to the Central Repository
The newest version!
package com.netease.cloud.http;
import java.io.InputStream;
import java.net.URI;
import java.util.HashMap;
import java.util.Map;
import com.netease.cloud.WebServiceRequest;
public class HttpRequest {
private Map parameters = new HashMap();
private Map headers = new HashMap();
private HttpMethodName methodName;
private String serviceName;
private URI endpoint;
private String resourcePath;
private InputStream inputStream;
private WebServiceRequest originalRequest;
/**
* Construct request with http method name
*
* Supported methods are: GET POST DELETE HEAD PUT
*
* @param methodName
* http method name
*/
public HttpRequest(HttpMethodName methodName) {
this.methodName = methodName;
}
/**
* Returns http request method
*
* @return http request method
*/
public HttpMethodName getMethodName() {
return methodName;
}
/**
* Sets the name of the service this request is for.
*
* @param serviceName
* The name of the service this request is for.
*/
public void setServiceName(String serviceName) {
this.serviceName = serviceName;
}
/**
* Returns the name of the service this request is for.
*
* @return The name of the service this request is for.
*/
public String getServiceName() {
return serviceName;
}
/**
* Returns the service endpoint.
*
* @return The service endpoint to which this HTTP request should be sent.
*/
public URI getEndpoint() {
return endpoint;
}
/**
* Sets the service endpoint .
*
* @param endpoint
* The service endpoint to which this HTTP request should be
* sent.
*/
public void setEndpoint(URI endpoint) {
this.endpoint = endpoint;
}
/**
* Returns list of request parameters
*
* @return list of request parameters
*/
public Map getParameters() {
return parameters;
}
/**
* Returns a map of the headers associated with this request
*
* @return a map of the headers associated with this request
*/
public Map getHeaders() {
return headers;
}
/**
* Adds the specified header name and value to this request.
*
* @param name
* The name of the header.
* @param value
* The value of the header.
*/
public void addHeader(String name, String value) {
headers.put(name, value);
}
/**
* Removes header from request
*
* @param name
* header name to remove
*/
public void removeHeader(String name) {
this.headers.remove(name);
}
public void addParameter(String name, String value) {
this.parameters.put(name, value);
}
public void setParameters(Map parameters) {
this.parameters = parameters;
}
public HttpRequest withParameter(String name, String value) {
addParameter(name, value);
return this;
}
/**
* Returns the resource path associated with this request.
*
* @return The resource path associated with this request.
*/
public String getResourcePath() {
return resourcePath;
}
/**
* Sets the resource path associated with this request.
*
* @param resourcePath
* The resource path associated with this request.
*/
public void setResourcePath(String resourcePath) {
this.resourcePath = resourcePath;
}
/**
* Sets the input stream containing the content to include with this
* request.
*
* @param inputStream
* The input stream containing the content to include with this
* request.
*/
public void setContent(InputStream inputStream) {
this.inputStream = inputStream;
}
/**
* Returns the input stream containing the content to include with this
* request.
*
* @return The input stream containing the content to include with this
* request.
*/
public InputStream getContent() {
return inputStream;
}
/**
* Sets the original request, as constructed by the SDK user, for which this
* HTTP request is being executed.
*
* @param request
* The original request constructed by the end user.
*/
public void setOriginalRequest(WebServiceRequest request) {
this.originalRequest = request;
}
/**
* Returns the original request, as constructed by the SDK user, for which
* this HTTP request is being executed.
*
* @return request The original request constructed by the end user.
*/
public WebServiceRequest getOriginalRequest() {
return originalRequest;
}
@Override
public String toString() {
StringBuilder builder = new StringBuilder();
builder.append(getMethodName().toString() + " ");
builder.append(getEndpoint().toString() + " ");
builder.append("/" + (getResourcePath() != null ? getResourcePath() : "") + " ");
if (!getParameters().isEmpty()) {
builder.append("Parameters: (");
for (String key : getParameters().keySet()) {
String value = getParameters().get(key);
builder.append(key + ": " + value + ", ");
}
builder.append(") ");
}
if (!getHeaders().isEmpty()) {
builder.append("Headers: (");
for (String key : getHeaders().keySet()) {
String value = getHeaders().get(key);
builder.append(key + ": " + value + ", ");
}
builder.append(") ");
}
return builder.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy