@Test
public void testStoreFetchDelete() throws ExecutionException, InterruptedException
{
RiakObject o = RiakObject.create(bucket.unsafeGetValue()).setValue("test value");
StoreMeta storeMeta = new StoreMeta.Builder().returnBody(true).build();
StoreOperation<RiakObject> store =
new StoreOperation<RiakObject>(bucket, o)
.withConverter(domainObjectConverter)
.withStoreMeta(storeMeta);