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
omit 8d4058f587a Regen for commit 6564b678d27cf49c069bc81cb1898df55d2ce6c6 add d7f80e11b42 CAMEL-19301: Upgrade to hawtio 2.17.2 add c5a7a8c3240 CAMEL-17946 Introducing HTTPS support for AS2 component for the main and 4.x branch add d7e2eb5eee8 Changed version for commons-io to 2.11.0 add 3ff6e2f5496 Substituted calls of System.out.println() to slf4j logging add 30b3b1a1e7f Fixed checkstyle issue add 75fa4ab130f Fixed checkstyle and source check issue add 2abbd5cd94a committing PFX file again, looks like my IDEA "optimized" it during the initial commit add c057e26f6ca Refactored test class for Mendelson AS2 resource: moved settings into property file, disabled the test by default add b2df33a7d98 Regen for commit c057e26f6ca95462eea65d1e7ac69f3a25c77a19 This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this: * -- * -- B -- O -- O -- O (8d4058f587a) \ N -- N -- N refs/heads/regen_bot (b2df33a7d98) You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B. Any revisions marked "omit" are not gone; other references still refer to them. Any revisions marked "discard" are gone forever. No new revisions were added by this update. Summary of changes: .../org/apache/camel/catalog/components/as2.json | 4 +- .../component/as2/api/AS2ClientConnection.java | 45 ++++- .../camel/component/as2/api/AS2ClientManager.java | 10 +- .../component/as2/api/AS2ServerConnection.java | 25 ++- .../camel/component/as2/api/AS2MessageTest.java | 4 +- components/camel-as2/camel-as2-component/pom.xml | 8 + ...ientManagerEndpointConfigurationConfigurer.java | 14 ++ .../component/as2/AS2ConfigurationConfigurer.java | 14 ++ .../camel/component/as2/AS2EndpointConfigurer.java | 14 ++ .../camel/component/as2/AS2EndpointUriFactory.java | 4 +- ...rverManagerEndpointConfigurationConfigurer.java | 14 ++ .../org/apache/camel/component/as2/as2.json | 4 +- .../camel/component/as2/AS2Configuration.java | 37 +++- .../apache/camel/component/as2/AS2Endpoint.java | 10 ++ .../as2/internal/AS2ConnectionHelper.java | 5 +- .../camel/component/as2/AS2ClientManagerIT.java | 2 +- .../camel/component/as2/AS2ServerManagerIT.java | 74 +++++++- .../as2/CreateEndpointManualIssueTest.java | 1 - .../camel/component/as2/MendelsonCertLoader.java | 195 ++++++++++++++++++++ .../as2/MendelsonSslEndpointManualTest.java | 128 +++++++++++++ .../src/test/resources/jsse/client-keystore.jks | Bin 0 -> 2183 bytes .../src/test/resources/jsse/client-truststore.jks | Bin 0 -> 921 bytes .../src/test/resources/jsse/localhost.p12 | Bin .../src/test/resources/jsse/server-keystore.jks | Bin 0 -> 2214 bytes .../src/test/resources/jsse/server-truststore.jks | Bin 0 -> 927 bytes .../src/test/resources/mendelson/key3.pfx | Bin 0 -> 2757 bytes .../src/test/resources/mendelson/key4.cer | 21 +++ .../src/test/resources/test-server.properties | 46 +++++ .../endpoint/dsl/AS2EndpointBuilderFactory.java | 200 ++++++++++++++++++++- .../dsl/jbang/core/commands/process/Hawtio.java | 2 +- 30 files changed, 838 insertions(+), 43 deletions(-) create mode 100644 components/camel-as2/camel-as2-component/src/test/java/org/apache/camel/component/as2/MendelsonCertLoader.java create mode 100644 components/camel-as2/camel-as2-component/src/test/java/org/apache/camel/component/as2/MendelsonSslEndpointManualTest.java create mode 100644 components/camel-as2/camel-as2-component/src/test/resources/jsse/client-keystore.jks create mode 100644 components/camel-as2/camel-as2-component/src/test/resources/jsse/client-truststore.jks copy components/{camel-cometd => camel-as2/camel-as2-component}/src/test/resources/jsse/localhost.p12 (100%) create mode 100644 components/camel-as2/camel-as2-component/src/test/resources/jsse/server-keystore.jks create mode 100644 components/camel-as2/camel-as2-component/src/test/resources/jsse/server-truststore.jks create mode 100644 components/camel-as2/camel-as2-component/src/test/resources/mendelson/key3.pfx create mode 100644 components/camel-as2/camel-as2-component/src/test/resources/mendelson/key4.cer create mode 100644 components/camel-as2/camel-as2-component/src/test/resources/test-server.properties