this.streaming = streaming;
}
public IHttpConnection getHttpConnectionWraper(String pathToOperation) throws MalformedURLException {
URL url = pathToOperation != null ? getUrl("/" + pathToOperation) : getUrl();
HttpConnectionWraper httpConnectionWraper = new HttpConnectionWraper(url, this.connectionType, this.encoding);
httpConnectionWraper.setDebug(this.debug);
httpConnectionWraper.setThreshold((int) this.threshold);
httpConnectionWraper.setTimeout((int) this.timeout);
httpConnectionWraper.setResponseTimeout(this.responseTimeout);
return httpConnectionWraper;
}