List<String> children = zoo.getChildren(path);
if (children != null) {
for (String child : children) {
Stat stat = new Stat();
byte[] data = zoo.getData(path + "/" + child, stat);
DeadServer server = new DeadServer(child, stat.getMtime(), new String(data, Constants.UTF8));
result.add(server);
}
}
} catch (Exception ex) {
log.error(ex, ex);