Is there any way we can find childrens of a given znode which is 30 days old using curator? I mean the node which doesn't had any activity for last 30 days or X days.
public List<String> getChildrenOfANode(final String path) throws
Exception {
return client.getChildren().forPath(path);
}
