ConfigPath lockPath;
private final ZookeeperCluster cluster;
public ZookeeperInstance(ConfigPath configPath) {
ConfigPath clusterPath = configPath.child("cluster");
ConfigPath lockPath = configPath.child("lock");
this.cluster = new ZookeeperCluster(clusterPath, lockPath.buildLock());
}