This is an automated email from the ASF dual-hosted git repository. orpiske pushed a change to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
from 77b58e811ea CAMEL-20800: Use cloudant instead of LightCouch new 44c2167fd36 Refresh camel-smb new 520541a0196 CAMEL-20679 Make buffer size configurable, file creation HashSets out of process The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../org/apache/camel/catalog/components/smb.json | 61 +- components/camel-smb/pom.xml | 5 + .../component/smb/SmbComponentConfigurer.java | 6 + .../camel/component/smb/SmbEndpointConfigurer.java | 24 + .../camel/component/smb/SmbEndpointUriFactory.java | 6 +- .../org/apache/camel/component/smb/smb.json | 61 +- .../camel-smb/src/main/docs/smb-component.adoc | 2 +- .../camel/component/smb/SmbConfiguration.java | 43 ++ .../apache/camel/component/smb/SmbConstants.java} | 14 +- .../apache/camel/component/smb/SmbEndpoint.java | 3 +- .../apache/camel/component/smb/SmbProducer.java | 246 ++++++++ .../apache/camel/component/smb/SmbComponentIT.java | 16 + .../component/dsl/SmbComponentBuilderFactory.java | 26 + .../endpoint/dsl/SmbEndpointBuilderFactory.java | 656 ++++++++++++++++++--- .../apache/camel/kotlin/components/SmbUriDsl.kt | 73 ++- 15 files changed, 1097 insertions(+), 145 deletions(-) copy components/{camel-pgevent/src/main/java/org/apache/camel/component/pgevent/PgEventConstants.java => camel-smb/src/main/java/org/apache/camel/component/smb/SmbConstants.java} (73%) create mode 100644 components/camel-smb/src/main/java/org/apache/camel/component/smb/SmbProducer.java