response = execRequest(httpPost, args, content);
} else if (StringUtil.equalsIgnoreCase(method, METHOD_PUT)) {
HttpPut httpPut = new HttpPut(url);
response = execRequest(httpPut, args, content);
} else if (StringUtil.equalsIgnoreCase(method, METHOD_DELETE)) {
HttpDelete httpDelete = new HttpDelete(url);
response = execRequest(httpDelete, args, content);
} else if (StringUtil.equalsIgnoreCase(method,METHOD_DELETE_BODY)){
HttpDeleteWithBody httpDelete = new HttpDeleteWithBody(url);
response = execRequest(httpDelete, args, content);
} else {