com.bandwidth.http.response.HttpStringResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bandwidth-sdk Show documentation
Show all versions of bandwidth-sdk Show documentation
The official client SDK for Bandwidth's Voice, Messaging, MFA, and WebRTC APIs
/*
* BandwidthLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
package com.bandwidth.http.response;
import com.bandwidth.http.Headers;
import java.io.InputStream;
/**
* Class to hold response body as string.
*/
public class HttpStringResponse extends HttpResponse {
/**
* Private store for properties.
*/
private String body;
/**
* Initialization constructor.
* @param code The HTTP status code
* @param headers The HTTP headers read from response
* @param rawBody The raw data returned in the HTTP response
* @param body String response body
*/
public HttpStringResponse(int code, Headers headers, InputStream rawBody, String body) {
super(code, headers, rawBody);
this.body = body;
}
/**
* String body of the http response.
* @return String response body
*/
public String getBody() {
return body;
}
/**
* Converts this HttpStringResponse into string format.
* @return String representation of this class
*/
@Override
public String toString() {
return "HttpStringResponse [statusCode=" + getStatusCode() + ", headers=" + getHeaders()
+ ", body=" + body + "]";
}
}