List of usage examples for org.apache.zookeeper Op withChroot
abstract Op withChroot(String addRootPrefix);
From source file:org.lab.mars.onem2m.ZooKeeper.java
License:Apache License
private Op withRootPrefix(Op op) { if (null != op.getPath()) { final String serverPath = prependChroot(op.getPath()); if (!op.getPath().equals(serverPath)) { return op.withChroot(serverPath); }//ww w .j av a 2 s .c o m } return op; }