Repository: camel
Updated Branches:
  refs/heads/master d46de189d -> ae42ba490


Component docs


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/ae42ba49
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/ae42ba49
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/ae42ba49

Branch: refs/heads/master
Commit: ae42ba49007c77ca253bd09428e29faa6c123cb3
Parents: d46de18
Author: Claus Ibsen <davscl...@apache.org>
Authored: Thu Sep 29 07:49:19 2016 +0200
Committer: Claus Ibsen <davscl...@apache.org>
Committed: Thu Sep 29 07:49:30 2016 +0200

----------------------------------------------------------------------
 components/camel-jsch/src/main/docs/scp-component.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/ae42ba49/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 1e281bf..2cd6fc9 100644
--- a/components/camel-jsch/src/main/docs/scp-component.adoc
+++ b/components/camel-jsch/src/main/docs/scp-component.adoc
@@ -76,13 +76,13 @@ The SCP component supports 21 endpoint options which are 
listed below:
 | host | producer |  | String | *Required* Hostname of the FTP server
 | port | producer |  | int | Port of the FTP server
 | directoryName | producer |  | String | The starting directory
+| disconnect | common | false | boolean | Whether or not to disconnect from 
remote FTP server right after use. Disconnect will only disconnect the current 
connection to the FTP server. If you have a consumer which you want to stop 
then you need to stop the consumer/route instead.
 | chmod | producer | 664 | String | Allows you to set chmod on the stored 
file. For example chmod=664.
-| disconnect | producer | false | boolean | Whether or not to disconnect from 
remote FTP server right after use. Disconnect will only disconnect the current 
connection to the FTP server. If you have a consumer which you want to stop 
then you need to stop the consumer/route instead.
-| disconnectOnBatchComplete | producer | false | boolean | Whether or not to 
disconnect from remote FTP server right after a Batch is complete. 
disconnectOnBatchComplete will only disconnect the current connection to the 
FTP server. If you have a consumer which you want to stop then you need to stop 
the consumer/route instead.
 | fileName | producer |  | String | Use Expression such as File Language to 
dynamically set the filename. For consumers it's used as a filename filter. For 
producers it's used to evaluate the filename to write. If an expression is set 
it take precedence over the CamelFileName header. (Note: The header itself can 
also be an Expression). The expression options support both String and 
Expression types. If the expression is a String type it is always evaluated 
using the File Language. If the expression is an Expression type the specified 
Expression type is used - this allows you for instance to use OGNL expressions. 
For the consumer you can use it to filter filenames so you can for instance 
consume today's file using the File Language syntax: 
mydata-$date:now:yyyyMMdd.txt. The producers support the CamelOverruleFileName 
header which takes precedence over any existing CamelFileName header; the 
CamelOverruleFileName is a header that is used only once and makes it easier as 
this avoids to 
 temporary store CamelFileName and have to restore it afterwards.
 | flatten | producer | false | boolean | Flatten is used to flatten the file 
name path to strip any leading paths so it's just the file name. This allows 
you to consume recursively into sub-directories but when you eg write the files 
to another directory they will be written in a single directory. Setting this 
to true on the producer enforces that any file name in CamelFileName header 
will be stripped for any leading paths.
 | strictHostKeyChecking | producer | no | String | Sets whether to use strict 
host key checking. Possible values are: no yes
 | allowNullBody | producer (advanced) | false | boolean | Used to specify if a 
null body is allowed during file writing. If set to true then an empty file 
will be created when set to false and attempting to send a null body to the 
file component a GenericFileWriteException of 'Cannot write null body to file.' 
will be thrown. If the fileExist option is set to 'Override' then the file will 
be truncated and if set to append the file will remain unchanged.
+| disconnectOnBatchComplete | producer (advanced) | false | boolean | Whether 
or not to disconnect from remote FTP server right after a Batch upload is 
complete. disconnectOnBatchComplete will only disconnect the current connection 
to the FTP server.
 | connectTimeout | advanced | 10000 | int | Sets the connect timeout for 
waiting for a connection to be established Used by both FTPClient and JSCH
 | soTimeout | advanced | 300000 | int | Sets the so timeout Used only by 
FTPClient
 | synchronous | advanced | false | boolean | Sets whether synchronous 
processing should be strictly used or Camel is allowed to use asynchronous 
processing (if supported).

Reply via email to