|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use OperationContext | |
---|---|
org.apache.chemistry.opencmis.client.api | The OpenCMIS Client API. |
org.apache.chemistry.opencmis.client.runtime | |
org.apache.chemistry.opencmis.tck.impl | |
org.apache.chemistry.opencmis.workbench.model |
Uses of OperationContext in org.apache.chemistry.opencmis.client.api |
---|
Methods in org.apache.chemistry.opencmis.client.api that return OperationContext | |
---|---|
OperationContext |
Session.createOperationContext()
Creates a new operation context object. |
OperationContext |
Session.createOperationContext(Set<String> filter,
boolean includeAcls,
boolean includeAllowableActions,
boolean includePolicies,
IncludeRelationships includeRelationships,
Set<String> renditionFilter,
boolean includePathSegments,
String orderBy,
boolean cacheEnabled,
int maxItemsPerPage)
Creates a new operation context object with the given properties. |
OperationContext |
Session.getDefaultContext()
Returns the current default operation parameters for filtering, paging and caching. |
Methods in org.apache.chemistry.opencmis.client.api with parameters of type OperationContext | |
---|---|
CmisObject |
ObjectFactory.convertObject(ObjectData objectData,
OperationContext context)
|
Document |
TransientDocument.copy(ObjectId targetFolderId,
Map<String,?> properties,
VersioningState versioningState,
List<Policy> policies,
List<Ace> addACEs,
List<Ace> removeACEs,
OperationContext context)
|
Document |
Document.copy(ObjectId targetFolderId,
Map<String,?> properties,
VersioningState versioningState,
List<Policy> policies,
List<Ace> addACEs,
List<Ace> removeACEs,
OperationContext context)
Creates a copy of this document, including content. |
Document |
TransientFolder.createDocument(Map<String,?> properties,
ContentStream contentStream,
VersioningState versioningState,
List<Policy> policies,
List<Ace> addAces,
List<Ace> removeAces,
OperationContext context)
|
Document |
Folder.createDocument(Map<String,?> properties,
ContentStream contentStream,
VersioningState versioningState,
List<Policy> policies,
List<Ace> addAces,
List<Ace> removeAces,
OperationContext context)
Creates a new document in this folder. |
Document |
TransientFolder.createDocumentFromSource(ObjectId source,
Map<String,?> properties,
VersioningState versioningState,
List<Policy> policies,
List<Ace> addAces,
List<Ace> removeAces,
OperationContext context)
|
Document |
Folder.createDocumentFromSource(ObjectId source,
Map<String,?> properties,
VersioningState versioningState,
List<Policy> policies,
List<Ace> addAces,
List<Ace> removeAces,
OperationContext context)
Creates a new document from a source document in this folder. |
Folder |
TransientFolder.createFolder(Map<String,?> properties,
List<Policy> policies,
List<Ace> addAces,
List<Ace> removeAces,
OperationContext context)
|
Folder |
Folder.createFolder(Map<String,?> properties,
List<Policy> policies,
List<Ace> addAces,
List<Ace> removeAces,
OperationContext context)
Creates a new subfolder in this folder. |
Policy |
TransientFolder.createPolicy(Map<String,?> properties,
List<Policy> policies,
List<Ace> addAces,
List<Ace> removeAces,
OperationContext context)
|
Policy |
Folder.createPolicy(Map<String,?> properties,
List<Policy> policies,
List<Ace> addAces,
List<Ace> removeAces,
OperationContext context)
Creates a new policy in this folder. |
List<Document> |
TransientDocument.getAllVersions(OperationContext context)
|
List<Document> |
Document.getAllVersions(OperationContext context)
Fetches all versions of this document using the given OperationContext . |
ItemIterable<Document> |
TransientFolder.getCheckedOutDocs(OperationContext context)
|
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<CmisObject> |
TransientFolder.getChildren(OperationContext context)
|
ItemIterable<CmisObject> |
Folder.getChildren(OperationContext context)
Returns the children of this folder using the given OperationContext . |
ChangeEvents |
Session.getContentChanges(String changeLogToken,
boolean includeProperties,
long maxNumItems,
OperationContext context)
Returns the content changes. |
List<Tree<FileableCmisObject>> |
TransientFolder.getDescendants(int depth,
OperationContext context)
|
List<Tree<FileableCmisObject>> |
Folder.getDescendants(int depth,
OperationContext context)
Gets the folder descendants starting with this folder using the given OperationContext . |
List<Tree<FileableCmisObject>> |
TransientFolder.getFolderTree(int depth,
OperationContext context)
|
List<Tree<FileableCmisObject>> |
Folder.getFolderTree(int depth,
OperationContext context)
Gets the folder tree starting with this folder using the given OperationContext . |
CmisObject |
Session.getObject(ObjectId objectId,
OperationContext context)
Returns a CMIS object from the session cache. |
CmisObject |
Session.getObject(String objectId,
OperationContext context)
Returns a CMIS object from the session cache. |
CmisObject |
Session.getObjectByPath(String path,
OperationContext context)
Returns a CMIS object from the session cache. |
Document |
TransientDocument.getObjectOfLatestVersion(boolean major,
OperationContext context)
|
Document |
Document.getObjectOfLatestVersion(boolean major,
OperationContext context)
Fetches the latest major or minor version of this document using the given OperationContext . |
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. |
Document |
Rendition.getRenditionDocument(OperationContext context)
|
Folder |
Session.getRootFolder(OperationContext context)
Gets the root folder of the repository with the given OperationContext . |
CmisObject |
TransientRelationship.getSource(OperationContext context)
|
CmisObject |
Relationship.getSource(OperationContext context)
Gets the source object using the given OperationContext . |
CmisObject |
TransientRelationship.getTarget(OperationContext context)
|
CmisObject |
Relationship.getTarget(OperationContext context)
Gets the target object using the given OperationContext . |
ItemIterable<QueryResult> |
Session.query(String statement,
boolean searchAllVersions,
OperationContext context)
Sends a query to the repository using the given OperationContext . |
void |
Session.setDefaultContext(OperationContext context)
Sets the current session parameters for filtering, paging and caching. |
Uses of OperationContext in org.apache.chemistry.opencmis.client.runtime |
---|
Classes in org.apache.chemistry.opencmis.client.runtime that implement OperationContext | |
---|---|
class |
org.apache.chemistry.opencmis.client.runtime.OperationContextImpl
OperationContext implementation. |
Uses of OperationContext in org.apache.chemistry.opencmis.tck.impl |
---|
Fields in org.apache.chemistry.opencmis.tck.impl declared as OperationContext | |
---|---|
static OperationContext |
AbstractSessionTest.SELECT_ALL_NO_CACHE_OC
|
Uses of OperationContext in org.apache.chemistry.opencmis.workbench.model |
---|
Classes in org.apache.chemistry.opencmis.workbench.model that implement OperationContext | |
---|---|
class |
ClientOperationContext
|
Methods in org.apache.chemistry.opencmis.workbench.model that return OperationContext | |
---|---|
OperationContext |
ClientSession.getFolderOperationContext()
|
OperationContext |
ClientSession.getObjectOperationContext()
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |