* Wraps the given {@link com.basho.riak.client.http.RiakClient} in a {@link DefaultRiakClient}
* @param delegate the http.{@link com.basho.riak.client.http.RiakClient} to wrap.
* @return a {@link DefaultRiakClient} that delegates to <code>delegate</code>
*/
public static IRiakClient httpClient(com.basho.riak.client.http.RiakClient delegate) throws RiakException {
final RawClient client = new HTTPClientAdapter(delegate);
return new DefaultRiakClient(client);
}