Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
titleReading the Root Collection
Folder root = this.session.getRootFolder();

PagingList<CmisObject>ItemIterable<CmisObject> pl = root.getChildren(1);

for (CmisObject o : pl) {
  System.out.println(o.getName());
}

...