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();

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

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

...

Code Block
titleReading a Single Property
ObjectId id = this.session.createObjectId("4711");
Document document = (Document) this.session.getObject(id);
Property<String> p = document.getProperty(CmisPropertiesPropertyIds.OBJECT_ID.value());

String s = p.getValue();

...