You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2016/08/16 11:51:24 UTC

[2/3] camel git commit: sftp endpoint should exclude some options it does not support

sftp endpoint should exclude some options it does not support


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

Branch: refs/heads/master
Commit: d4fa3c55ca1a0801232d96302609a34c6cab648b
Parents: 6645583
Author: Claus Ibsen <da...@apache.org>
Authored: Tue Aug 16 13:50:27 2016 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Tue Aug 16 13:50:27 2016 +0200

----------------------------------------------------------------------
 .../java/org/apache/camel/component/file/remote/SftpEndpoint.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/d4fa3c55/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpEndpoint.java b/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpEndpoint.java
index 12af0f8..0da5beb 100644
--- a/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpEndpoint.java
+++ b/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpEndpoint.java
@@ -28,7 +28,8 @@ import org.apache.camel.spi.UriParam;
  *  The sftp (FTP over SSH) component is used for uploading or downloading files from SFTP servers.
  */
 @UriEndpoint(scheme = "sftp", extendsScheme = "file", title = "SFTP",
-        syntax = "sftp:host:port/directoryName", consumerClass = SftpConsumer.class, label = "file")
+        syntax = "sftp:host:port/directoryName", consumerClass = SftpConsumer.class, label = "file",
+        excludeProperties = "binary,passiveMode,receiveBufferSize,siteCommand,useList")
 public class SftpEndpoint extends RemoteFileEndpoint<ChannelSftp.LsEntry> {
 
     @UriParam