CMIS Component
Available as of Camel 2.11
The cmis component uses the Apache Chemistry client API and allows you to add/read nodes to/from a CMIS compliant content repositories.
URI Format
cmis://cmisServerUrl[?options]
You can append query options to the URI in the following format, ?options=value&option2=value&...
URI Options
Name |
Default Value |
Context |
Description |
---|---|---|---|
queryMode |
|
Producer |
If true, will execute the cmis query from the message body and return result, otherwise will create a node in the cmis repository |
query |
|
Consumer |
The cmis query to execute against the repository. If not specified, the consumer will retrieve every node from the content repository by iterating the content tree recursively |
username |
|
Both |
Username for the cmis repository |
password |
|
Both |
Password for the cmis repository |
repositoryId |
|
Both |
The Id of the repository to use. If not specified the first available repository is used |
pageSize |
|
Both |
Number of nodes to retrieve per page |
readCount |
|
Both |
Max number of nodes to read |
readContent |
|
Both |
If set to true, the content of document node will be retrieved in addition to the properties |
Usage
Message headers evaluated by the producer
Header |
Default Value |
Description |
---|---|---|
|
|
The current folder to use during the execution. If not specified will use the root folder |
|
|
In |
|
|
Max number of nodes to read. |
|
|
If |
|
|
If |
|
|
The type of the node |
|
|
The mimetype to set for a document |
Message headers set during querying Producer operation
Header |
Type |
Description |
---|---|---|
|
|
Number of nodes returned from the query. |
The message body will contain a list of maps, where each entry in the map is cmis property and its value.
If CamelCMISRetrieveContent
header is set to true, one additional entry in the map with key CamelCMISContent
will contain InputStream
of the document type of nodes.
Dependencies
Maven users will need to add the following dependency to their pom.xml.
<dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-cmis</artifactId> <version>${camel-version}</version> </dependency>
where ${camel-version
} must be replaced by the actual version of Camel (2.11 or higher).