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 2023/05/04 04:20:33 UTC

[camel] branch camel-3.x updated: Regen for commit fcf9a6287b588113dc15fa46fe05342bb1c194ba (#9990)

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

davsclaus pushed a commit to branch camel-3.x
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/camel-3.x by this push:
     new d43383becd6 Regen for commit fcf9a6287b588113dc15fa46fe05342bb1c194ba (#9990)
d43383becd6 is described below

commit d43383becd6874b096346e71f478846905196670
Author: github-actions[bot] <41...@users.noreply.github.com>
AuthorDate: Thu May 4 06:20:26 2023 +0200

    Regen for commit fcf9a6287b588113dc15fa46fe05342bb1c194ba (#9990)
    
    Signed-off-by: GitHub <no...@github.com>
    Co-authored-by: davsclaus <da...@users.noreply.github.com>
---
 .../endpoint/dsl/AS2EndpointBuilderFactory.java    | 200 ++++++++++++++++++++-
 1 file changed, 194 insertions(+), 6 deletions(-)

diff --git a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/AS2EndpointBuilderFactory.java b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/AS2EndpointBuilderFactory.java
index d818566cf41..4d012531317 100644
--- a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/AS2EndpointBuilderFactory.java
+++ b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/AS2EndpointBuilderFactory.java
@@ -264,6 +264,38 @@ public interface AS2EndpointBuilderFactory {
             doSetProperty("from", from);
             return this;
         }
+        /**
+         * Set hostname verifier for SSL session.
+         * 
+         * The option is a:
+         * &lt;code&gt;javax.net.ssl.HostnameVerifier&lt;/code&gt; type.
+         * 
+         * Group: common
+         * 
+         * @param hostnameVerifier the value to set
+         * @return the dsl builder
+         */
+        default AS2EndpointConsumerBuilder hostnameVerifier(
+                javax.net.ssl.HostnameVerifier hostnameVerifier) {
+            doSetProperty("hostnameVerifier", hostnameVerifier);
+            return this;
+        }
+        /**
+         * Set hostname verifier for SSL session.
+         * 
+         * The option will be converted to a
+         * &lt;code&gt;javax.net.ssl.HostnameVerifier&lt;/code&gt; type.
+         * 
+         * Group: common
+         * 
+         * @param hostnameVerifier the value to set
+         * @return the dsl builder
+         */
+        default AS2EndpointConsumerBuilder hostnameVerifier(
+                String hostnameVerifier) {
+            doSetProperty("hostnameVerifier", hostnameVerifier);
+            return this;
+        }
         /**
          * The maximum size of the connection pool for http connections (client
          * only).
@@ -507,6 +539,37 @@ public interface AS2EndpointBuilderFactory {
             doSetProperty("serverPortNumber", serverPortNumber);
             return this;
         }
+        /**
+         * Set SSL context for connection to remote server.
+         * 
+         * The option is a: &lt;code&gt;javax.net.ssl.SSLContext&lt;/code&gt;
+         * type.
+         * 
+         * Group: common
+         * 
+         * @param sslContext the value to set
+         * @return the dsl builder
+         */
+        default AS2EndpointConsumerBuilder sslContext(
+                javax.net.ssl.SSLContext sslContext) {
+            doSetProperty("sslContext", sslContext);
+            return this;
+        }
+        /**
+         * Set SSL context for connection to remote server.
+         * 
+         * The option will be converted to a
+         * &lt;code&gt;javax.net.ssl.SSLContext&lt;/code&gt; type.
+         * 
+         * Group: common
+         * 
+         * @param sslContext the value to set
+         * @return the dsl builder
+         */
+        default AS2EndpointConsumerBuilder sslContext(String sslContext) {
+            doSetProperty("sslContext", sslContext);
+            return this;
+        }
         /**
          * The value of Subject header of AS2 message.
          * 
@@ -812,7 +875,7 @@ public interface AS2EndpointBuilderFactory {
             return this;
         }
         /**
-         * Certifiates to validate the messages signature against. If not
+         * Certificates to validate the message's signature against. If not
          * supplied, validation will not take place. Server: validates the
          * received message. Client: not yet implemented, should validate the
          * MDN.
@@ -831,7 +894,7 @@ public interface AS2EndpointBuilderFactory {
             return this;
         }
         /**
-         * Certifiates to validate the messages signature against. If not
+         * Certificates to validate the message's signature against. If not
          * supplied, validation will not take place. Server: validates the
          * received message. Client: not yet implemented, should validate the
          * MDN.
@@ -1162,6 +1225,38 @@ public interface AS2EndpointBuilderFactory {
             doSetProperty("from", from);
             return this;
         }
+        /**
+         * Set hostname verifier for SSL session.
+         * 
+         * The option is a:
+         * &lt;code&gt;javax.net.ssl.HostnameVerifier&lt;/code&gt; type.
+         * 
+         * Group: common
+         * 
+         * @param hostnameVerifier the value to set
+         * @return the dsl builder
+         */
+        default AS2EndpointProducerBuilder hostnameVerifier(
+                javax.net.ssl.HostnameVerifier hostnameVerifier) {
+            doSetProperty("hostnameVerifier", hostnameVerifier);
+            return this;
+        }
+        /**
+         * Set hostname verifier for SSL session.
+         * 
+         * The option will be converted to a
+         * &lt;code&gt;javax.net.ssl.HostnameVerifier&lt;/code&gt; type.
+         * 
+         * Group: common
+         * 
+         * @param hostnameVerifier the value to set
+         * @return the dsl builder
+         */
+        default AS2EndpointProducerBuilder hostnameVerifier(
+                String hostnameVerifier) {
+            doSetProperty("hostnameVerifier", hostnameVerifier);
+            return this;
+        }
         /**
          * The maximum size of the connection pool for http connections (client
          * only).
@@ -1405,6 +1500,37 @@ public interface AS2EndpointBuilderFactory {
             doSetProperty("serverPortNumber", serverPortNumber);
             return this;
         }
+        /**
+         * Set SSL context for connection to remote server.
+         * 
+         * The option is a: &lt;code&gt;javax.net.ssl.SSLContext&lt;/code&gt;
+         * type.
+         * 
+         * Group: common
+         * 
+         * @param sslContext the value to set
+         * @return the dsl builder
+         */
+        default AS2EndpointProducerBuilder sslContext(
+                javax.net.ssl.SSLContext sslContext) {
+            doSetProperty("sslContext", sslContext);
+            return this;
+        }
+        /**
+         * Set SSL context for connection to remote server.
+         * 
+         * The option will be converted to a
+         * &lt;code&gt;javax.net.ssl.SSLContext&lt;/code&gt; type.
+         * 
+         * Group: common
+         * 
+         * @param sslContext the value to set
+         * @return the dsl builder
+         */
+        default AS2EndpointProducerBuilder sslContext(String sslContext) {
+            doSetProperty("sslContext", sslContext);
+            return this;
+        }
         /**
          * The value of Subject header of AS2 message.
          * 
@@ -1710,7 +1836,7 @@ public interface AS2EndpointBuilderFactory {
             return this;
         }
         /**
-         * Certifiates to validate the messages signature against. If not
+         * Certificates to validate the message's signature against. If not
          * supplied, validation will not take place. Server: validates the
          * received message. Client: not yet implemented, should validate the
          * MDN.
@@ -1729,7 +1855,7 @@ public interface AS2EndpointBuilderFactory {
             return this;
         }
         /**
-         * Certifiates to validate the messages signature against. If not
+         * Certificates to validate the message's signature against. If not
          * supplied, validation will not take place. Server: validates the
          * received message. Client: not yet implemented, should validate the
          * MDN.
@@ -2039,6 +2165,37 @@ public interface AS2EndpointBuilderFactory {
             doSetProperty("from", from);
             return this;
         }
+        /**
+         * Set hostname verifier for SSL session.
+         * 
+         * The option is a:
+         * &lt;code&gt;javax.net.ssl.HostnameVerifier&lt;/code&gt; type.
+         * 
+         * Group: common
+         * 
+         * @param hostnameVerifier the value to set
+         * @return the dsl builder
+         */
+        default AS2EndpointBuilder hostnameVerifier(
+                javax.net.ssl.HostnameVerifier hostnameVerifier) {
+            doSetProperty("hostnameVerifier", hostnameVerifier);
+            return this;
+        }
+        /**
+         * Set hostname verifier for SSL session.
+         * 
+         * The option will be converted to a
+         * &lt;code&gt;javax.net.ssl.HostnameVerifier&lt;/code&gt; type.
+         * 
+         * Group: common
+         * 
+         * @param hostnameVerifier the value to set
+         * @return the dsl builder
+         */
+        default AS2EndpointBuilder hostnameVerifier(String hostnameVerifier) {
+            doSetProperty("hostnameVerifier", hostnameVerifier);
+            return this;
+        }
         /**
          * The maximum size of the connection pool for http connections (client
          * only).
@@ -2278,6 +2435,37 @@ public interface AS2EndpointBuilderFactory {
             doSetProperty("serverPortNumber", serverPortNumber);
             return this;
         }
+        /**
+         * Set SSL context for connection to remote server.
+         * 
+         * The option is a: &lt;code&gt;javax.net.ssl.SSLContext&lt;/code&gt;
+         * type.
+         * 
+         * Group: common
+         * 
+         * @param sslContext the value to set
+         * @return the dsl builder
+         */
+        default AS2EndpointBuilder sslContext(
+                javax.net.ssl.SSLContext sslContext) {
+            doSetProperty("sslContext", sslContext);
+            return this;
+        }
+        /**
+         * Set SSL context for connection to remote server.
+         * 
+         * The option will be converted to a
+         * &lt;code&gt;javax.net.ssl.SSLContext&lt;/code&gt; type.
+         * 
+         * Group: common
+         * 
+         * @param sslContext the value to set
+         * @return the dsl builder
+         */
+        default AS2EndpointBuilder sslContext(String sslContext) {
+            doSetProperty("sslContext", sslContext);
+            return this;
+        }
         /**
          * The value of Subject header of AS2 message.
          * 
@@ -2579,7 +2767,7 @@ public interface AS2EndpointBuilderFactory {
             return this;
         }
         /**
-         * Certifiates to validate the messages signature against. If not
+         * Certificates to validate the message's signature against. If not
          * supplied, validation will not take place. Server: validates the
          * received message. Client: not yet implemented, should validate the
          * MDN.
@@ -2598,7 +2786,7 @@ public interface AS2EndpointBuilderFactory {
             return this;
         }
         /**
-         * Certifiates to validate the messages signature against. If not
+         * Certificates to validate the message's signature against. If not
          * supplied, validation will not take place. Server: validates the
          * received message. Client: not yet implemented, should validate the
          * MDN.