Exemplo n.º 1
0
 /* (non-Javadoc)
  * @see com.basho.riak.client.HttpRiakObject#updateMeta(com.basho.riak.client.response.StoreResponse)
  */
 public void updateMeta(StoreResponse response) {
   if (response == null) {
     vclock = null;
     lastmod = null;
     vtag = null;
   } else {
     vclock = response.getVclock();
     lastmod = response.getLastmod();
     vtag = response.getVtag();
   }
 }