Package | Description |
---|---|
org.apache.chemistry.opencmis.client.api |
The OpenCMIS Client API.
|
Modifier and Type | Method and Description |
---|---|
ItemIterable<Document> |
Session.getCheckedOutDocs()
Returns all checked out documents.
|
ItemIterable<Document> |
Folder.getCheckedOutDocs()
Returns all checked out documents in this folder.
|
ItemIterable<Document> |
Session.getCheckedOutDocs(OperationContext context)
Returns all checked out documents with the given
OperationContext
. |
ItemIterable<Document> |
Folder.getCheckedOutDocs(OperationContext context)
Returns all checked out documents in this folder using the given
OperationContext . |
ItemIterable<ObjectType> |
ObjectType.getChildren()
Gets the list of types directly derived from this type (which will return
this type on
getParent() ). |
ItemIterable<CmisObject> |
Folder.getChildren()
Returns the children of this folder.
|
ItemIterable<CmisObject> |
Folder.getChildren(OperationContext context)
Returns the children of this folder using the given
OperationContext . |
ItemIterable<ChangeEvent> |
Session.getContentChanges(String changeLogToken,
boolean includeProperties)
Returns an iterator of content changes, starting from the given change
log token to the latest entry in the change log.
|
ItemIterable<ChangeEvent> |
Session.getContentChanges(String changeLogToken,
boolean includeProperties,
OperationContext context)
Returns an iterator of content changes, starting from the given change
log token to the latest entry in the change log.
|
ItemIterable<T> |
ItemIterable.getPage()
Gets an iterable for the current sub collection within the CMIS
collection using default maximum number of items.
|
ItemIterable<T> |
ItemIterable.getPage(int maxNumItems)
Gets an iterable for the current sub collection within the CMIS
collection.
|
ItemIterable<Relationship> |
Session.getRelationships(ObjectId objectId,
boolean includeSubRelationshipTypes,
RelationshipDirection relationshipDirection,
ObjectType type,
OperationContext context)
Fetches the relationships from or to an object from the repository.
|
ItemIterable<ObjectType> |
Session.getTypeChildren(String typeId,
boolean includePropertyDefinitions)
Gets the type children of a type.
|
ItemIterable<QueryResult> |
QueryStatement.query()
Executes the query with
searchAllVersions set to false . |
ItemIterable<QueryResult> |
QueryStatement.query(boolean searchAllVersions)
Executes the query.
|
ItemIterable<QueryResult> |
QueryStatement.query(boolean searchAllVersions,
OperationContext context)
Executes the query.
|
ItemIterable<QueryResult> |
Session.query(String statement,
boolean searchAllVersions)
Sends a query to the repository.
|
ItemIterable<QueryResult> |
Session.query(String statement,
boolean searchAllVersions,
OperationContext context)
Sends a query to the repository using the given
OperationContext . |
ItemIterable<CmisObject> |
Session.queryObjects(String typeId,
String where,
boolean searchAllVersions,
OperationContext context)
Builds a CMIS query and returns the query results as an iterator of
CmisObject objects. |
ItemIterable<T> |
ItemIterable.skipTo(long position)
Skips to position within CMIS collection.
|
Copyright © 2009–2017 The Apache Software Foundation. All rights reserved.