use of org.polymap.service.fs.spi.IContentNode in project polymap4-core by Polymap4.
the class WebDavFolderResource method child.
public Resource child(String childName) {
IPath childPath = node.getPath().append(childName);
IContentNode child = contentManager.getNode(childPath);
return WebDavResourceFactory.wrapContentNode(child, contentManager, securityManager);
}
Aggregations