You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gi...@apache.org on 2020/12/20 21:19:27 UTC

[camel] branch regen_bot updated (80d2b24 -> 630a028)

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git.


    from 80d2b24  CAMEL-15971: file consumer filter by fileName option should eval with current file instead of dummy empty exchange.
     add cbd08f6  CAMEL-15979: camel-file/camel-ftp - Add includeExt/excludeExt to make it easy to filter based on file extension
     add 630a028  Regen for commit cbd08f6bc6b4f4cce9621309b201ce8360a5f0ad

No new revisions were added by this update.

Summary of changes:
 .../org/apache/camel/catalog/components/file.json  |  2 ++
 .../org/apache/camel/catalog/components/ftp.json   |  2 ++
 .../org/apache/camel/catalog/components/ftps.json  |  2 ++
 .../org/apache/camel/catalog/components/sftp.json  |  2 ++
 .../apache/camel/catalog/docs/file-component.adoc  |  4 ++-
 .../apache/camel/catalog/docs/ftp-component.adoc   |  4 ++-
 .../apache/camel/catalog/docs/ftps-component.adoc  |  4 ++-
 .../apache/camel/catalog/docs/sftp-component.adoc  |  4 ++-
 .../component/file/FileEndpointConfigurer.java     | 12 ++++++++
 .../component/file/FileEndpointUriFactory.java     |  4 ++-
 .../org/apache/camel/component/file/file.json      |  2 ++
 .../camel-file/src/main/docs/file-component.adoc   |  4 ++-
 .../camel/component/file/GenericFileConsumer.java  | 23 +++++++++++++++
 .../camel/component/file/GenericFileEndpoint.java  | 34 ++++++++++++++++++++++
 .../file/remote/FtpEndpointConfigurer.java         | 12 ++++++++
 .../file/remote/FtpEndpointUriFactory.java         |  4 ++-
 .../file/remote/FtpsEndpointUriFactory.java        |  4 ++-
 .../file/remote/SftpEndpointConfigurer.java        | 12 ++++++++
 .../file/remote/SftpEndpointUriFactory.java        |  4 ++-
 .../apache/camel/component/file/remote/ftp.json    |  2 ++
 .../apache/camel/component/file/remote/ftps.json   |  2 ++
 .../apache/camel/component/file/remote/sftp.json   |  2 ++
 .../camel-ftp/src/main/docs/ftp-component.adoc     |  4 ++-
 .../camel-ftp/src/main/docs/ftps-component.adoc    |  4 ++-
 .../camel-ftp/src/main/docs/sftp-component.adoc    |  4 ++-
 ...ameTest.java => FtpConsumerExcludeExtTest.java} | 15 ++++------
 ...ameTest.java => FtpConsumerIncludeExtTest.java} | 15 ++++------
 ...erTest.java => FileConsumerExcludeExtTest.java} |  7 +++--
 ...erTest.java => FileConsumerIncludeExtTest.java} |  7 +++--
 .../endpoint/dsl/FileEndpointBuilderFactory.java   | 34 ++++++++++++++++++++++
 .../endpoint/dsl/FtpEndpointBuilderFactory.java    | 34 ++++++++++++++++++++++
 .../endpoint/dsl/FtpsEndpointBuilderFactory.java   | 34 ++++++++++++++++++++++
 .../endpoint/dsl/SftpEndpointBuilderFactory.java   | 34 ++++++++++++++++++++++
 .../modules/ROOT/pages/file-component.adoc         |  4 ++-
 .../modules/ROOT/pages/ftp-component.adoc          |  4 ++-
 .../modules/ROOT/pages/ftps-component.adoc         |  4 ++-
 .../modules/ROOT/pages/sftp-component.adoc         |  4 ++-
 37 files changed, 313 insertions(+), 40 deletions(-)
 copy components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/{FtpConsumerIncludeNameTest.java => FtpConsumerExcludeExtTest.java} (82%)
 copy components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/{FtpConsumerIncludeNameTest.java => FtpConsumerIncludeExtTest.java} (82%)
 copy core/camel-core/src/test/java/org/apache/camel/component/file/{FileConsumerFileNameFilterTest.java => FileConsumerExcludeExtTest.java} (89%)
 copy core/camel-core/src/test/java/org/apache/camel/component/file/{FileConsumerFileNameFilterTest.java => FileConsumerIncludeExtTest.java} (90%)