Back to project page RobolectricSample.
The source code is released under:
MIT License
If you think the Android project RobolectricSample listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.pivotallabs.api; //from w w w . j av a 2 s . c om import org.w3c.dom.Document; import org.xml.sax.SAXException; import javax.xml.parsers.ParserConfigurationException; import java.io.IOException; public class ApiResponse { private int httpResponseCode; private String responseBody; public ApiResponse(int httpCode, String responseBody) { this.httpResponseCode = httpCode; this.responseBody = responseBody; } public int getResponseCode() { return httpResponseCode; } public String getResponseBody() { return responseBody; } public Document getResponseDocument() throws IOException, SAXException, ParserConfigurationException { return Xmls.getDocument(getResponseBody()); } public boolean isSuccess() { return httpResponseCode >= 200 && httpResponseCode < 300; } public boolean isUnauthorized() { return httpResponseCode == 401; } @Override public String toString() { return "ApiResponse{" + "httpResponseCode=" + httpResponseCode + ", responseBody='" + responseBody + '\'' + '}'; } }