Versions Compared

Key

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

...

Code Block
xml
xml
<dependency>
    <groupId>org.apache.camel</groupId>
    <artifactId>camel-dropbox</artifactId>
    <version>x.x.x</version>
    <!-- use the same version as your Camel core version -->
</dependency>

URI format

Code Block
couchdbdropbox:http://hostname[:portoperation]/database?[options]

Where hostname operation is the hostname of the running couchdb instance. Port is optional and if not specified then defaults to 5984specific operation to perform on Dropbox remote folder.

Options

Wiki Markup
{div:class=confluenceTableSmall}
|| Property || Default || Description ||
| {{deletes}} | {{true}} | document deletes are published as events |
| {{updates}} | {{true}} | document inserts/updates are published as events |
| {{heartbeat}} | {{30000}} | how often to send an empty message to keep socket alive in millis |
| {{createDatabase}} | {{true}} | create the database if it does not already exist |
| {{username}} | {{null}} | username in case of authenticated databases |
| {{password}} | {{null}} | password for authenticated databases |
{div}

...