This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push: new 91ee7da062c CAMEL-21380: Regen 91ee7da062c is described below commit 91ee7da062cd6eaabdb3b94ffe379945c5fb98e6 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Thu Oct 24 08:00:53 2024 +0200 CAMEL-21380: Regen --- .../dsl/SalesforceComponentBuilderFactory.java | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/dsl/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/SalesforceComponentBuilderFactory.java b/dsl/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/SalesforceComponentBuilderFactory.java index d2c4ca5679a..39569d4b890 100644 --- a/dsl/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/SalesforceComponentBuilderFactory.java +++ b/dsl/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/SalesforceComponentBuilderFactory.java @@ -1384,6 +1384,24 @@ public interface SalesforceComponentBuilderFactory { return this; } + + /** + * Allow the Pub/Sub API client to use the proxy detected by + * java.net.ProxySelector. If false then no proxy server will be used. + * + * The option is a: <code>boolean</code> type. + * + * Default: true + * Group: proxy + * + * @param pubsubAllowUseSystemProxy the value to set + * @return the dsl builder + */ + default SalesforceComponentBuilder pubsubAllowUseSystemProxy(boolean pubsubAllowUseSystemProxy) { + doSetProperty("pubsubAllowUseSystemProxy", pubsubAllowUseSystemProxy); + return this; + } + /** * Explicit authentication method to be used, one of USERNAME_PASSWORD, * REFRESH_TOKEN, CLIENT_CREDENTIALS, or JWT. Salesforce component can @@ -1868,6 +1886,7 @@ public interface SalesforceComponentBuilderFactory { case "httpProxyIncludedAddresses": ((SalesforceComponent) component).setHttpProxyIncludedAddresses((java.util.Set) value); return true; case "httpProxyPort": ((SalesforceComponent) component).setHttpProxyPort((java.lang.Integer) value); return true; case "httpProxySocks4": ((SalesforceComponent) component).setHttpProxySocks4((boolean) value); return true; + case "pubsubAllowUseSystemProxy": ((SalesforceComponent) component).setPubsubAllowUseSystemProxy((boolean) value); return true; case "authenticationType": ((SalesforceComponent) component).setAuthenticationType((org.apache.camel.component.salesforce.AuthenticationType) value); return true; case "clientId": ((SalesforceComponent) component).setClientId((java.lang.String) value); return true; case "clientSecret": ((SalesforceComponent) component).setClientSecret((java.lang.String) value); return true;