/**
* Same as {@link RiakClient}, except only returning the HTTP response
*/
public HttpResponse delete(String bucket, String key, RequestMeta meta) {
if (meta == null) {
meta = new RequestMeta();
}
String url = ClientUtils.makeURI(config, bucket, key);
HttpDelete delete = new HttpDelete(url);
return executeMethod(bucket, key, delete, meta);
}