01-17-2012 12:24 PM
01-19-2012 11:02 AM
01-30-2012 03:59 AM
01-30-2012 10:02 AM
import org.apache.chemistry.opencmis.client.api.*
session.rootFolder.getDescendants(-1).each {
printTree(it, 0)
}
def printTree(Tree tree, int depth) {
for(i in 0..depth) { print " " }
println tree.item.name
if(tree.children.size > 0) {
tree.children.each {
printTree(it, depth + 1)
}
}
}
02-01-2012 10:38 AM
02-15-2014 05:23 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.