if(this.statusCode!=204){
content = IOUtils.toString(response.getEntity().getContent());
this.result = content;
}
} catch (IOException e) {
throw new ApiTransportException(e);
} finally {
try {
if(this.statusCode!=204){
response.getEntity().getContent().close();
}