int i = random.nextInt(NB_CHILDREN);
int j = random.nextInt(NB_CHILDREN);
int k = random.nextInt(NB_CHILDREN);
JCRNodeWrapper node = session.getNode(SITECONTENT_ROOT_NODE).getNode("child" + i).getNode(
"child" + j).getNode("child" + k);
node.addNode("child" + random.nextLong(), primaryNodeTypeName);
session.save();
return null;
}
});
stopWatch.stop();