|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ExtensionsData | |
---|---|
org.apache.chemistry.opencmis.client.api | The OpenCMIS Client API. |
org.apache.chemistry.opencmis.commons.data | OpenCMIS data interfaces. |
org.apache.chemistry.opencmis.commons.definitions | OpenCMIS type and property definition interfaces. |
org.apache.chemistry.opencmis.commons.server | OpenCMIS server interfaces. |
org.apache.chemistry.opencmis.commons.spi | OpenCMIS client and server binding services. |
org.apache.chemistry.opencmis.server.support |
Uses of ExtensionsData in org.apache.chemistry.opencmis.client.api |
---|
Subinterfaces of ExtensionsData in org.apache.chemistry.opencmis.client.api | |
---|---|
interface |
ChangeEvent
Change Event from the change log. |
interface |
DocumentType
Document Object Type. |
interface |
FolderType
Folder Object Type. |
interface |
ObjectType
Object Type. |
interface |
PolicyType
Policy Object Type. |
interface |
Property<T>
CMIS Property. |
interface |
RelationshipType
Relationship Object Type. |
interface |
Rendition
CmisObject.getRenditions() . |
interface |
Repository
Represents a repository. |
Uses of ExtensionsData in org.apache.chemistry.opencmis.commons.data |
---|
Subinterfaces of ExtensionsData in org.apache.chemistry.opencmis.commons.data | |
---|---|
interface |
Ace
Access Control Entry (ACE). |
interface |
Acl
Access Control List (ACL). |
interface |
AclCapabilities
|
interface |
AllowableActions
|
interface |
ChangeEventInfo
|
interface |
ContentStream
Content stream. |
interface |
FailedToDeleteData
|
interface |
ObjectData
Base object for CMIS documents, folders, relationships and policies. |
interface |
ObjectInFolderContainer
|
interface |
ObjectInFolderData
|
interface |
ObjectInFolderList
|
interface |
ObjectList
|
interface |
ObjectParentData
|
interface |
PermissionMapping
|
interface |
PolicyIdList
|
interface |
Principal
ACE Principal. |
interface |
Properties
|
interface |
PropertyBoolean
|
interface |
PropertyData<T>
Base property interface. |
interface |
PropertyDateTime
|
interface |
PropertyDecimal
|
interface |
PropertyHtml
|
interface |
PropertyId
|
interface |
PropertyInteger
|
interface |
PropertyString
|
interface |
PropertyUri
|
interface |
RenditionData
|
interface |
RepositoryCapabilities
|
interface |
RepositoryInfo
|
Uses of ExtensionsData in org.apache.chemistry.opencmis.commons.definitions |
---|
Subinterfaces of ExtensionsData in org.apache.chemistry.opencmis.commons.definitions | |
---|---|
interface |
DocumentTypeDefinition
|
interface |
FolderTypeDefinition
|
interface |
PermissionDefinition
|
interface |
PolicyTypeDefinition
|
interface |
PropertyBooleanDefinition
|
interface |
PropertyDateTimeDefinition
|
interface |
PropertyDecimalDefinition
|
interface |
PropertyDefinition<T>
Base property definition interface. |
interface |
PropertyHtmlDefinition
|
interface |
PropertyIdDefinition
|
interface |
PropertyIntegerDefinition
|
interface |
PropertyStringDefinition
|
interface |
PropertyUriDefinition
|
interface |
RelationshipTypeDefinition
|
interface |
TypeDefinition
Base type definition interface. |
interface |
TypeDefinitionContainer
|
interface |
TypeDefinitionList
|
Uses of ExtensionsData in org.apache.chemistry.opencmis.commons.server |
---|
Methods in org.apache.chemistry.opencmis.commons.server with parameters of type ExtensionsData | |
---|---|
String |
CmisService.create(String repositoryId,
Properties properties,
String folderId,
ContentStream contentStream,
VersioningState versioningState,
List<String> policies,
ExtensionsData extension)
Creates a new document, folder or policy. |
void |
CmisService.deleteObjectOrCancelCheckOut(String repositoryId,
String objectId,
Boolean allVersions,
ExtensionsData extension)
Deletes an object or cancels a check out. |
Uses of ExtensionsData in org.apache.chemistry.opencmis.commons.spi |
---|
Methods in org.apache.chemistry.opencmis.commons.spi with parameters of type ExtensionsData | |
---|---|
void |
MultiFilingService.addObjectToFolder(String repositoryId,
String objectId,
String folderId,
Boolean allVersions,
ExtensionsData extension)
Adds an existing fileable non-folder object to a folder. |
Acl |
AclService.applyAcl(String repositoryId,
String objectId,
Acl addAces,
Acl removeAces,
AclPropagation aclPropagation,
ExtensionsData extension)
Adds or removes the given ACEs to or from the ACL of the object. |
void |
PolicyService.applyPolicy(String repositoryId,
String policyId,
String objectId,
ExtensionsData extension)
Applies a specified policy to an object. |
void |
VersioningService.cancelCheckOut(String repositoryId,
String objectId,
ExtensionsData extension)
Reverses the effect of a check-out. |
void |
VersioningService.checkIn(String repositoryId,
Holder<String> objectId,
Boolean major,
Properties properties,
ContentStream contentStream,
String checkinComment,
List<String> policies,
Acl addAces,
Acl removeAces,
ExtensionsData extension)
Checks-in the private working copy (PWC) document. |
void |
VersioningService.checkOut(String repositoryId,
Holder<String> objectId,
ExtensionsData extension,
Holder<Boolean> contentCopied)
Create a private working copy of the document. |
String |
ObjectService.createDocument(String repositoryId,
Properties properties,
String folderId,
ContentStream contentStream,
VersioningState versioningState,
List<String> policies,
Acl addAces,
Acl removeAces,
ExtensionsData extension)
Creates a document object of the specified type (given by the cmis:objectTypeId property) in the (optionally) specified location. |
String |
ObjectService.createDocumentFromSource(String repositoryId,
String sourceId,
Properties properties,
String folderId,
VersioningState versioningState,
List<String> policies,
Acl addAces,
Acl removeAces,
ExtensionsData extension)
Creates a document object as a copy of the given source document in the (optionally) specified location. |
String |
ObjectService.createFolder(String repositoryId,
Properties properties,
String folderId,
List<String> policies,
Acl addAces,
Acl removeAces,
ExtensionsData extension)
Creates a folder object of the specified type (given by the cmis:objectTypeId property) in the specified location. |
String |
ObjectService.createPolicy(String repositoryId,
Properties properties,
String folderId,
List<String> policies,
Acl addAces,
Acl removeAces,
ExtensionsData extension)
Creates a policy object of the specified type (given by the cmis:objectTypeId property). |
String |
ObjectService.createRelationship(String repositoryId,
Properties properties,
List<String> policies,
Acl addAces,
Acl removeAces,
ExtensionsData extension)
Creates a relationship object of the specified type (given by the cmis:objectTypeId property). |
void |
ObjectService.deleteContentStream(String repositoryId,
Holder<String> objectId,
Holder<String> changeToken,
ExtensionsData extension)
Deletes the content stream for the specified document object. |
void |
ObjectService.deleteObject(String repositoryId,
String objectId,
Boolean allVersions,
ExtensionsData extension)
Deletes the specified object. |
FailedToDeleteData |
ObjectService.deleteTree(String repositoryId,
String folderId,
Boolean allVersions,
UnfileObject unfileObjects,
Boolean continueOnFailure,
ExtensionsData extension)
Deletes the specified folder object and all of its child- and descendant-objects. |
Acl |
AclService.getAcl(String repositoryId,
String objectId,
Boolean onlyBasicPermissions,
ExtensionsData extension)
Get the ACL currently applied to the specified object. |
AllowableActions |
ObjectService.getAllowableActions(String repositoryId,
String objectId,
ExtensionsData extension)
Gets the list of allowable actions for an object. |
List<ObjectData> |
VersioningService.getAllVersions(String repositoryId,
String objectId,
String versionSeriesId,
String filter,
Boolean includeAllowableActions,
ExtensionsData extension)
Returns the list of all document objects in the specified version series, sorted by the property "cmis:creationDate" descending. |
List<ObjectData> |
PolicyService.getAppliedPolicies(String repositoryId,
String objectId,
String filter,
ExtensionsData extension)
Gets the list of policies currently applied to the specified object. |
ObjectList |
NavigationService.getCheckedOutDocs(String repositoryId,
String folderId,
String filter,
String orderBy,
Boolean includeAllowableActions,
IncludeRelationships includeRelationships,
String renditionFilter,
BigInteger maxItems,
BigInteger skipCount,
ExtensionsData extension)
Gets the list of documents that are checked out that the user has access to. |
ObjectInFolderList |
NavigationService.getChildren(String repositoryId,
String folderId,
String filter,
String orderBy,
Boolean includeAllowableActions,
IncludeRelationships includeRelationships,
String renditionFilter,
Boolean includePathSegment,
BigInteger maxItems,
BigInteger skipCount,
ExtensionsData extension)
Gets the list of child objects contained in the specified folder. |
ObjectList |
DiscoveryService.getContentChanges(String repositoryId,
Holder<String> changeLogToken,
Boolean includeProperties,
String filter,
Boolean includePolicyIds,
Boolean includeAcl,
BigInteger maxItems,
ExtensionsData extension)
Gets a list of content changes. |
ContentStream |
ObjectService.getContentStream(String repositoryId,
String objectId,
String streamId,
BigInteger offset,
BigInteger length,
ExtensionsData extension)
Gets the content stream for the specified document object, or gets a rendition stream for a specified rendition of a document or folder object. |
List<ObjectInFolderContainer> |
NavigationService.getDescendants(String repositoryId,
String folderId,
BigInteger depth,
String filter,
Boolean includeAllowableActions,
IncludeRelationships includeRelationships,
String renditionFilter,
Boolean includePathSegment,
ExtensionsData extension)
Gets the set of descendant objects contained in the specified folder or any of its child folders. |
ObjectData |
NavigationService.getFolderParent(String repositoryId,
String folderId,
String filter,
ExtensionsData extension)
Gets the parent folder object for the specified folder object. |
List<ObjectInFolderContainer> |
NavigationService.getFolderTree(String repositoryId,
String folderId,
BigInteger depth,
String filter,
Boolean includeAllowableActions,
IncludeRelationships includeRelationships,
String renditionFilter,
Boolean includePathSegment,
ExtensionsData extension)
Gets the set of descendant folder objects contained in the specified folder. |
ObjectData |
ObjectService.getObject(String repositoryId,
String objectId,
String filter,
Boolean includeAllowableActions,
IncludeRelationships includeRelationships,
String renditionFilter,
Boolean includePolicyIds,
Boolean includeAcl,
ExtensionsData extension)
Gets the specified information for the object specified by id. |
ObjectData |
ObjectService.getObjectByPath(String repositoryId,
String path,
String filter,
Boolean includeAllowableActions,
IncludeRelationships includeRelationships,
String renditionFilter,
Boolean includePolicyIds,
Boolean includeAcl,
ExtensionsData extension)
Gets the specified information for the object specified by path. |
ObjectData |
VersioningService.getObjectOfLatestVersion(String repositoryId,
String objectId,
String versionSeriesId,
Boolean major,
String filter,
Boolean includeAllowableActions,
IncludeRelationships includeRelationships,
String renditionFilter,
Boolean includePolicyIds,
Boolean includeAcl,
ExtensionsData extension)
Get the latest document object in the version series. |
List<ObjectParentData> |
NavigationService.getObjectParents(String repositoryId,
String objectId,
String filter,
Boolean includeAllowableActions,
IncludeRelationships includeRelationships,
String renditionFilter,
Boolean includeRelativePathSegment,
ExtensionsData extension)
Gets the parent folder(s) for the specified non-folder, fileable object. |
ObjectList |
RelationshipService.getObjectRelationships(String repositoryId,
String objectId,
Boolean includeSubRelationshipTypes,
RelationshipDirection relationshipDirection,
String typeId,
String filter,
Boolean includeAllowableActions,
BigInteger maxItems,
BigInteger skipCount,
ExtensionsData extension)
Gets all or a subset of relationships associated with an independent object. |
Properties |
ObjectService.getProperties(String repositoryId,
String objectId,
String filter,
ExtensionsData extension)
Gets the list of properties for an object. |
Properties |
VersioningService.getPropertiesOfLatestVersion(String repositoryId,
String objectId,
String versionSeriesId,
Boolean major,
String filter,
ExtensionsData extension)
Get a subset of the properties for the latest document object in the version series. |
List<RenditionData> |
ObjectService.getRenditions(String repositoryId,
String objectId,
String renditionFilter,
BigInteger maxItems,
BigInteger skipCount,
ExtensionsData extension)
Gets the list of associated renditions for the specified object. |
RepositoryInfo |
RepositoryService.getRepositoryInfo(String repositoryId,
ExtensionsData extension)
Returns information about the CMIS repository, the optional capabilities it supports and its access control information if applicable. |
List<RepositoryInfo> |
RepositoryService.getRepositoryInfos(ExtensionsData extension)
Returns a list of CMIS repository information available from this CMIS service endpoint. |
TypeDefinitionList |
RepositoryService.getTypeChildren(String repositoryId,
String typeId,
Boolean includePropertyDefinitions,
BigInteger maxItems,
BigInteger skipCount,
ExtensionsData extension)
Returns the list of object types defined for the repository that are children of the specified type. |
TypeDefinition |
RepositoryService.getTypeDefinition(String repositoryId,
String typeId,
ExtensionsData extension)
Gets the definition of the specified object type. |
List<TypeDefinitionContainer> |
RepositoryService.getTypeDescendants(String repositoryId,
String typeId,
BigInteger depth,
Boolean includePropertyDefinitions,
ExtensionsData extension)
Returns the set of descendant object type defined for the repository under the specified type. |
void |
ObjectService.moveObject(String repositoryId,
Holder<String> objectId,
String targetFolderId,
String sourceFolderId,
ExtensionsData extension)
Moves the specified file-able object from one folder to another. |
ObjectList |
DiscoveryService.query(String repositoryId,
String statement,
Boolean searchAllVersions,
Boolean includeAllowableActions,
IncludeRelationships includeRelationships,
String renditionFilter,
BigInteger maxItems,
BigInteger skipCount,
ExtensionsData extension)
Executes a CMIS query statement against the contents of the repository. |
void |
MultiFilingService.removeObjectFromFolder(String repositoryId,
String objectId,
String folderId,
ExtensionsData extension)
Removes an existing fileable non-folder object from a folder. |
void |
PolicyService.removePolicy(String repositoryId,
String policyId,
String objectId,
ExtensionsData extension)
Removes a specified policy from an object. |
void |
ObjectService.setContentStream(String repositoryId,
Holder<String> objectId,
Boolean overwriteFlag,
Holder<String> changeToken,
ContentStream contentStream,
ExtensionsData extension)
Sets the content stream for the specified document object. |
void |
ObjectService.updateProperties(String repositoryId,
Holder<String> objectId,
Holder<String> changeToken,
Properties properties,
ExtensionsData extension)
Updates properties of the specified object. |
Uses of ExtensionsData in org.apache.chemistry.opencmis.server.support |
---|
Methods in org.apache.chemistry.opencmis.server.support with parameters of type ExtensionsData | |
---|---|
void |
CmisServiceWrapper.addObjectToFolder(String repositoryId,
String objectId,
String folderId,
Boolean allVersions,
ExtensionsData extension)
|
Acl |
CmisServiceWrapper.applyAcl(String repositoryId,
String objectId,
Acl addAces,
Acl removeAces,
AclPropagation aclPropagation,
ExtensionsData extension)
|
void |
CmisServiceWrapper.applyPolicy(String repositoryId,
String policyId,
String objectId,
ExtensionsData extension)
|
void |
CmisServiceWrapper.cancelCheckOut(String repositoryId,
String objectId,
ExtensionsData extension)
|
void |
CmisServiceWrapper.checkIn(String repositoryId,
Holder<String> objectId,
Boolean major,
Properties properties,
ContentStream contentStream,
String checkinComment,
List<String> policies,
Acl addAces,
Acl removeAces,
ExtensionsData extension)
|
void |
CmisServiceWrapper.checkOut(String repositoryId,
Holder<String> objectId,
ExtensionsData extension,
Holder<Boolean> contentCopied)
|
String |
CmisServiceWrapper.create(String repositoryId,
Properties properties,
String folderId,
ContentStream contentStream,
VersioningState versioningState,
List<String> policies,
ExtensionsData extension)
|
String |
CmisServiceWrapper.createDocument(String repositoryId,
Properties properties,
String folderId,
ContentStream contentStream,
VersioningState versioningState,
List<String> policies,
Acl addAces,
Acl removeAces,
ExtensionsData extension)
|
String |
CmisServiceWrapper.createDocumentFromSource(String repositoryId,
String sourceId,
Properties properties,
String folderId,
VersioningState versioningState,
List<String> policies,
Acl addAces,
Acl removeAces,
ExtensionsData extension)
|
String |
CmisServiceWrapper.createFolder(String repositoryId,
Properties properties,
String folderId,
List<String> policies,
Acl addAces,
Acl removeAces,
ExtensionsData extension)
|
String |
CmisServiceWrapper.createPolicy(String repositoryId,
Properties properties,
String folderId,
List<String> policies,
Acl addAces,
Acl removeAces,
ExtensionsData extension)
|
String |
CmisServiceWrapper.createRelationship(String repositoryId,
Properties properties,
List<String> policies,
Acl addAces,
Acl removeAces,
ExtensionsData extension)
|
void |
CmisServiceWrapper.deleteContentStream(String repositoryId,
Holder<String> objectId,
Holder<String> changeToken,
ExtensionsData extension)
|
void |
CmisServiceWrapper.deleteObject(String repositoryId,
String objectId,
Boolean allVersions,
ExtensionsData extension)
|
void |
CmisServiceWrapper.deleteObjectOrCancelCheckOut(String repositoryId,
String objectId,
Boolean allVersions,
ExtensionsData extension)
|
FailedToDeleteData |
CmisServiceWrapper.deleteTree(String repositoryId,
String folderId,
Boolean allVersions,
UnfileObject unfileObjects,
Boolean continueOnFailure,
ExtensionsData extension)
|
Acl |
CmisServiceWrapper.getAcl(String repositoryId,
String objectId,
Boolean onlyBasicPermissions,
ExtensionsData extension)
|
AllowableActions |
CmisServiceWrapper.getAllowableActions(String repositoryId,
String objectId,
ExtensionsData extension)
|
List<ObjectData> |
CmisServiceWrapper.getAllVersions(String repositoryId,
String objectId,
String versionSeriesId,
String filter,
Boolean includeAllowableActions,
ExtensionsData extension)
|
List<ObjectData> |
CmisServiceWrapper.getAppliedPolicies(String repositoryId,
String objectId,
String filter,
ExtensionsData extension)
|
ObjectList |
CmisServiceWrapper.getCheckedOutDocs(String repositoryId,
String folderId,
String filter,
String orderBy,
Boolean includeAllowableActions,
IncludeRelationships includeRelationships,
String renditionFilter,
BigInteger maxItems,
BigInteger skipCount,
ExtensionsData extension)
|
ObjectInFolderList |
CmisServiceWrapper.getChildren(String repositoryId,
String folderId,
String filter,
String orderBy,
Boolean includeAllowableActions,
IncludeRelationships includeRelationships,
String renditionFilter,
Boolean includePathSegment,
BigInteger maxItems,
BigInteger skipCount,
ExtensionsData extension)
|
ObjectList |
CmisServiceWrapper.getContentChanges(String repositoryId,
Holder<String> changeLogToken,
Boolean includeProperties,
String filter,
Boolean includePolicyIds,
Boolean includeAcl,
BigInteger maxItems,
ExtensionsData extension)
|
ContentStream |
CmisServiceWrapper.getContentStream(String repositoryId,
String objectId,
String streamId,
BigInteger offset,
BigInteger length,
ExtensionsData extension)
|
List<ObjectInFolderContainer> |
CmisServiceWrapper.getDescendants(String repositoryId,
String folderId,
BigInteger depth,
String filter,
Boolean includeAllowableActions,
IncludeRelationships includeRelationships,
String renditionFilter,
Boolean includePathSegment,
ExtensionsData extension)
|
ObjectData |
CmisServiceWrapper.getFolderParent(String repositoryId,
String folderId,
String filter,
ExtensionsData extension)
|
List<ObjectInFolderContainer> |
CmisServiceWrapper.getFolderTree(String repositoryId,
String folderId,
BigInteger depth,
String filter,
Boolean includeAllowableActions,
IncludeRelationships includeRelationships,
String renditionFilter,
Boolean includePathSegment,
ExtensionsData extension)
|
ObjectData |
CmisServiceWrapper.getObject(String repositoryId,
String objectId,
String filter,
Boolean includeAllowableActions,
IncludeRelationships includeRelationships,
String renditionFilter,
Boolean includePolicyIds,
Boolean includeAcl,
ExtensionsData extension)
|
ObjectData |
CmisServiceWrapper.getObjectByPath(String repositoryId,
String path,
String filter,
Boolean includeAllowableActions,
IncludeRelationships includeRelationships,
String renditionFilter,
Boolean includePolicyIds,
Boolean includeAcl,
ExtensionsData extension)
|
ObjectData |
CmisServiceWrapper.getObjectOfLatestVersion(String repositoryId,
String objectId,
String versionSeriesId,
Boolean major,
String filter,
Boolean includeAllowableActions,
IncludeRelationships includeRelationships,
String renditionFilter,
Boolean includePolicyIds,
Boolean includeAcl,
ExtensionsData extension)
|
List<ObjectParentData> |
CmisServiceWrapper.getObjectParents(String repositoryId,
String objectId,
String filter,
Boolean includeAllowableActions,
IncludeRelationships includeRelationships,
String renditionFilter,
Boolean includeRelativePathSegment,
ExtensionsData extension)
|
ObjectList |
CmisServiceWrapper.getObjectRelationships(String repositoryId,
String objectId,
Boolean includeSubRelationshipTypes,
RelationshipDirection relationshipDirection,
String typeId,
String filter,
Boolean includeAllowableActions,
BigInteger maxItems,
BigInteger skipCount,
ExtensionsData extension)
|
Properties |
CmisServiceWrapper.getProperties(String repositoryId,
String objectId,
String filter,
ExtensionsData extension)
|
Properties |
CmisServiceWrapper.getPropertiesOfLatestVersion(String repositoryId,
String objectId,
String versionSeriesId,
Boolean major,
String filter,
ExtensionsData extension)
|
List<RenditionData> |
CmisServiceWrapper.getRenditions(String repositoryId,
String objectId,
String renditionFilter,
BigInteger maxItems,
BigInteger skipCount,
ExtensionsData extension)
|
RepositoryInfo |
CmisServiceWrapper.getRepositoryInfo(String repositoryId,
ExtensionsData extension)
|
List<RepositoryInfo> |
CmisServiceWrapper.getRepositoryInfos(ExtensionsData extension)
|
TypeDefinitionList |
CmisServiceWrapper.getTypeChildren(String repositoryId,
String typeId,
Boolean includePropertyDefinitions,
BigInteger maxItems,
BigInteger skipCount,
ExtensionsData extension)
|
TypeDefinition |
CmisServiceWrapper.getTypeDefinition(String repositoryId,
String typeId,
ExtensionsData extension)
|
List<TypeDefinitionContainer> |
CmisServiceWrapper.getTypeDescendants(String repositoryId,
String typeId,
BigInteger depth,
Boolean includePropertyDefinitions,
ExtensionsData extension)
|
void |
CmisServiceWrapper.moveObject(String repositoryId,
Holder<String> objectId,
String targetFolderId,
String sourceFolderId,
ExtensionsData extension)
|
ObjectList |
CmisServiceWrapper.query(String repositoryId,
String statement,
Boolean searchAllVersions,
Boolean includeAllowableActions,
IncludeRelationships includeRelationships,
String renditionFilter,
BigInteger maxItems,
BigInteger skipCount,
ExtensionsData extension)
|
void |
CmisServiceWrapper.removeObjectFromFolder(String repositoryId,
String objectId,
String folderId,
ExtensionsData extension)
|
void |
CmisServiceWrapper.removePolicy(String repositoryId,
String policyId,
String objectId,
ExtensionsData extension)
|
void |
CmisServiceWrapper.setContentStream(String repositoryId,
Holder<String> objectId,
Boolean overwriteFlag,
Holder<String> changeToken,
ContentStream contentStream,
ExtensionsData extension)
|
void |
CmisServiceWrapper.updateProperties(String repositoryId,
Holder<String> objectId,
Holder<String> changeToken,
Properties properties,
ExtensionsData extension)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |