Ejemplo n.º 1
0
 @Override
 public URI create(PnfsId id) throws IOException {
   String imageName = toImageName(id);
   rbd.create(imageName, 0);
   ctx.setXattr(
       toObjName(imageName), CREATION_TIME_ATTR, Longs.toByteArray(System.currentTimeMillis()));
   return toUri(imageName);
 }