Back to project page RestIt.
The source code is released under:
Apache License
If you think the Android project RestIt 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 org.restit.network; //w ww. j a v a 2 s .com public class RequestOptions { private boolean chunckedStreamingMode = true; private String overrideBaseUrl; public String getOverrideBaseUrl() { return overrideBaseUrl; } /** * Set a base URL that will override the stock rest it URL * @param overrideBaseUrl */ public void setOverrideBaseUrl(String overrideBaseUrl) { this.overrideBaseUrl = overrideBaseUrl; } public boolean isChunckedStreamingMode() { return chunckedStreamingMode; } /** * Should file uploads support chunked streaming mode * @param chunckedStreamingMode */ public void setChunckedStreamingMode(boolean chunckedStreamingMode) { this.chunckedStreamingMode = chunckedStreamingMode; } }