public TraverseNodes(Session s, String path) {
super(s, path);
}
public NodeIterator execute() throws Exception {
FilterContentPackage pack = new FilterContentPackage();
pack.addContent(getPath(), new IsNodePredicate());
return new NodeIteratorAdapter(pack.getItems(getSession()));
}