public static void createFullPath(
     ZooKeeperConnection zooKeeperConnection, String path, byte[] value, CreateMode createMode)
     throws KeeperException, InterruptedException {
   createFullPath(zooKeeperConnection, path, value, createMode, false);
 }
 public void createFullPath(String path, byte[] value, CreateMode createMode)
     throws KeeperException, InterruptedException {
   createFullPath(this, path, value, createMode);
 }