public boolean returnResponse(int statusCode) {
   HTTPResponse httpRes = new HTTPResponse();
   httpRes.setStatusCode(statusCode);
   httpRes.setContentLength(0);
   return post(httpRes);
 }