Repository: camel Updated Branches: refs/heads/master f6c757de4 -> 78cede2b9
Updated component docs Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/78cede2b Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/78cede2b Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/78cede2b Branch: refs/heads/master Commit: 78cede2b9c39e80b5f24ffa03e758c684f0940c7 Parents: f6c757d Author: Claus Ibsen <davscl...@apache.org> Authored: Fri Nov 4 16:02:27 2016 +0100 Committer: Claus Ibsen <davscl...@apache.org> Committed: Fri Nov 4 16:02:40 2016 +0100 ---------------------------------------------------------------------- .../camel-bonita/src/main/docs/bonita-component.adoc | 4 ++-- .../apache/camel/component/bonita/BonitaEndpoint.java | 11 +---------- components/camel-jsch/src/main/docs/scp-component.adoc | 4 ++-- components/readme.adoc | 3 +++ docs/user-manual/en/SUMMARY.md | 1 + 5 files changed, 9 insertions(+), 14 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/78cede2b/components/camel-bonita/src/main/docs/bonita-component.adoc ---------------------------------------------------------------------- diff --git a/components/camel-bonita/src/main/docs/bonita-component.adoc b/components/camel-bonita/src/main/docs/bonita-component.adoc index bb14dd7..d17c3e0 100644 --- a/components/camel-bonita/src/main/docs/bonita-component.adoc +++ b/components/camel-bonita/src/main/docs/bonita-component.adoc @@ -22,12 +22,12 @@ General Options ^^^^^^^^^^^^^^^ // component options: START -The bonita component has no options. +The Bonita component has no options. // component options: END // endpoint options: START -The bonita component supports 10 endpoint options which are listed below: +The Bonita component supports 10 endpoint options which are listed below: {% raw %} [width="100%",cols="2,1,1m,1m,5",options="header"] http://git-wip-us.apache.org/repos/asf/camel/blob/78cede2b/components/camel-bonita/src/main/java/org/apache/camel/component/bonita/BonitaEndpoint.java ---------------------------------------------------------------------- diff --git a/components/camel-bonita/src/main/java/org/apache/camel/component/bonita/BonitaEndpoint.java b/components/camel-bonita/src/main/java/org/apache/camel/component/bonita/BonitaEndpoint.java index f76622c..918ea3b 100644 --- a/components/camel-bonita/src/main/java/org/apache/camel/component/bonita/BonitaEndpoint.java +++ b/components/camel-bonita/src/main/java/org/apache/camel/component/bonita/BonitaEndpoint.java @@ -25,19 +25,10 @@ import org.apache.camel.component.bonita.util.BonitaOperation; import org.apache.camel.impl.DefaultEndpoint; import org.apache.camel.spi.UriEndpoint; import org.apache.camel.spi.UriParam; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -@UriEndpoint( - scheme = "bonita", - title = "bonita", - syntax = "bonita:operation", - consumerOnly = true, - label = "bonita") +@UriEndpoint(scheme = "bonita", title = "Bonita", syntax = "bonita:operation", consumerOnly = true, label = "process") public class BonitaEndpoint extends DefaultEndpoint { - private static final transient Logger LOG = LoggerFactory.getLogger(BonitaEndpoint.class); - @UriParam private BonitaConfiguration configuration; http://git-wip-us.apache.org/repos/asf/camel/blob/78cede2b/components/camel-jsch/src/main/docs/scp-component.adoc ---------------------------------------------------------------------- diff --git a/components/camel-jsch/src/main/docs/scp-component.adoc b/components/camel-jsch/src/main/docs/scp-component.adoc index a7b1766..b6e615b 100644 --- a/components/camel-jsch/src/main/docs/scp-component.adoc +++ b/components/camel-jsch/src/main/docs/scp-component.adoc @@ -67,7 +67,7 @@ The SCP component supports 1 options which are listed below. // endpoint options: START -The SCP component supports 21 endpoint options which are listed below: +The SCP component supports 22 endpoint options which are listed below: {% raw %} [width="100%",cols="2,1,1m,1m,5",options="header"] @@ -89,7 +89,7 @@ The SCP component supports 21 endpoint options which are listed below: | timeout | advanced | 30000 | int | Sets the data timeout for waiting for reply Used only by FTPClient | knownHostsFile | security | | String | Sets the known_hosts file so that the jsch endpoint can do host key verification. | password | security | | String | Password to use for login -| preferredAuthentications | security | | String | Set the authentication methods that JSch will be allowed to use, e.g. gssapi-with-mic,publickey,keyboard-interactive,password +| preferredAuthentications | security | | String | Set a comma separated list of authentications that will be used in order of preference. Possible authentication methods are defined by JCraft JSCH. Some examples include: gssapi-with-micpublickeykeyboard-interactivepassword If not specified the JSCH and/or system defaults will be used. | privateKeyFile | security | | String | Set the private key file to that the SFTP endpoint can do private key verification. | privateKeyFilePassphrase | security | | String | Set the private key file passphrase to that the SFTP endpoint can do private key verification. | username | security | | String | Username to use for login http://git-wip-us.apache.org/repos/asf/camel/blob/78cede2b/components/readme.adoc ---------------------------------------------------------------------- diff --git a/components/readme.adoc b/components/readme.adoc index 40d26cc..f599dc3 100644 --- a/components/readme.adoc +++ b/components/readme.adoc @@ -78,6 +78,9 @@ Components | link:camel-beanstalk/src/main/docs/beanstalk-component.adoc[Beanstalk] (camel-beanstalk) + `beanstalk:connectionSettings` | The beanstalk component is used for job retrieval and post-processing of Beanstalk jobs. +| link:camel-bonita/src/main/docs/bonita-component.adoc[Bonita] (camel-bonita) + +`bonita:operation` | Camel Bonita support + | link:camel-box/src/main/docs/box-component.adoc[Box] (camel-box) + `box:apiName/methodName` | For uploading downloading and managing files folders groups collaborations etc on box DOT com. http://git-wip-us.apache.org/repos/asf/camel/blob/78cede2b/docs/user-manual/en/SUMMARY.md ---------------------------------------------------------------------- diff --git a/docs/user-manual/en/SUMMARY.md b/docs/user-manual/en/SUMMARY.md index 6d74c3f..e38a901 100644 --- a/docs/user-manual/en/SUMMARY.md +++ b/docs/user-manual/en/SUMMARY.md @@ -168,6 +168,7 @@ * [AWS SimpleDB](aws-sdb-component.adoc) * [Bean Validator](bean-validator-component.adoc) * [Beanstalk](beanstalk-component.adoc) + * [Bonita](bonita-component.adoc) * [Box](box-component.adoc) * [Braintree](braintree-component.adoc) * [Camel Context](context-component.adoc)