Versions Compared

Key

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

...

Package

Artifact

Description

org.apache.chemistry.opencmis.client.api

opencmis-client-api

Main interfaces of the client API

org.apache.chemistry.opencmis.commons.api

opencmis-commons-api

Interfaces and classes shared by client and provider API

org.apache.chemistry.opencmis.client.runtime

opencmis-client-impl

Implementation classes of client API including a default implementation of the SessionFactory

...

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

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

for (List<CmisObject> cl : pl) {
  for (CmisObject o : clpl) {
    System.out.println(o.getName());
  }
}

Reading Properties - Single Property

...