![JAR search and dependency download from the Maven repository](/logo.png)
com.microsoft.rest.v2.RestResponse Maven / Gradle / Ivy
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/
package com.microsoft.rest.v2;
import com.microsoft.rest.v2.http.HttpRequest;
import java.util.Map;
/**
* The response object that is a result of making a REST request.
* @param The deserialized type of the response headers.
* @param The deserialized type of the response body.
*/
public class RestResponse {
private final HttpRequest request;
private final int statusCode;
private final THeaders headers;
private final Map rawHeaders;
private final TBody body;
/**
* Create a new RestResponse object.
* @param request The request which resulted in this RestResponse.
* @param statusCode The status code of the HTTP response.
* @param headers The deserialized headers of the HTTP response.
* @param rawHeaders The raw headers of the HTTP response.
* @param body The deserialized body.
*/
public RestResponse(HttpRequest request, int statusCode, THeaders headers, Map rawHeaders, TBody body) {
this.request = request;
this.statusCode = statusCode;
this.headers = headers;
this.rawHeaders = rawHeaders;
this.body = body;
}
/**
* @return The request which resulted in this RestResponse.
*/
public HttpRequest request() {
return request;
}
/**
* @return The status code of the HTTP response.
*/
public int statusCode() {
return statusCode;
}
/**
* @return The deserialized headers of the HTTP response.
*/
public THeaders headers() {
return headers;
}
/**
* @return A Map containing the raw HTTP response headers.
*/
public Map rawHeaders() {
return rawHeaders;
}
/**
* @return The deserialized body of the HTTP response.
*/
public TBody body() {
return body;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy