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 24c1120d01c Regen 24c1120d01c is described below commit 24c1120d01cb614f30ef4955e87bae9b41ee7dab Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Tue Jul 18 13:49:37 2023 +0200 Regen --- .../dsl/ArangodbComponentBuilderFactory.java | 15 +++++++++ .../endpoint/dsl/AtomEndpointBuilderFactory.java | 39 ++-------------------- .../endpoint/dsl/RssEndpointBuilderFactory.java | 34 ------------------- 3 files changed, 17 insertions(+), 71 deletions(-) diff --git a/dsl/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/ArangodbComponentBuilderFactory.java b/dsl/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/ArangodbComponentBuilderFactory.java index dd1d02590e2..045d167e13a 100644 --- a/dsl/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/ArangodbComponentBuilderFactory.java +++ b/dsl/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/ArangodbComponentBuilderFactory.java @@ -208,6 +208,20 @@ public interface ArangodbComponentBuilderFactory { doSetProperty("vertexCollection", vertexCollection); return this; } + /** + * To use an existing ArangDB client. + * + * The option is a: <code>com.arangodb.ArangoDB</code> type. + * + * Group: advanced + * + * @param arangoDB the value to set + * @return the dsl builder + */ + default ArangodbComponentBuilder arangoDB(com.arangodb.ArangoDB arangoDB) { + doSetProperty("arangoDB", arangoDB); + return this; + } /** * Whether autowiring is enabled. This is used for automatic autowiring * options (the option must be marked as autowired) by looking up in the @@ -292,6 +306,7 @@ public interface ArangodbComponentBuilderFactory { case "operation": getOrCreateConfiguration((ArangoDbComponent) component).setOperation((org.apache.camel.component.arangodb.ArangoDbOperation) value); return true; case "port": getOrCreateConfiguration((ArangoDbComponent) component).setPort((int) value); return true; case "vertexCollection": getOrCreateConfiguration((ArangoDbComponent) component).setVertexCollection((java.lang.String) value); return true; + case "arangoDB": ((ArangoDbComponent) component).setArangoDB((com.arangodb.ArangoDB) value); return true; case "autowiredEnabled": ((ArangoDbComponent) component).setAutowiredEnabled((boolean) value); return true; case "password": getOrCreateConfiguration((ArangoDbComponent) component).setPassword((java.lang.String) value); return true; case "user": getOrCreateConfiguration((ArangoDbComponent) component).setUser((java.lang.String) value); return true; diff --git a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/AtomEndpointBuilderFactory.java b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/AtomEndpointBuilderFactory.java index 9b401a5009b..f6bbaf62615 100644 --- a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/AtomEndpointBuilderFactory.java +++ b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/AtomEndpointBuilderFactory.java @@ -646,40 +646,6 @@ public interface AtomEndpointBuilderFactory { doSetProperty("useFixedDelay", useFixedDelay); return this; } - /** - * Sets the password to be used for basic authentication when polling - * from a HTTP feed.Notice: Basic authentication is not a secured - * method, and is not recommended to be used. - * - * The option is a: <code>java.lang.String</code> type. - * - * Group: security - * - * @param password the value to set - * @return the dsl builder - */ - @Deprecated - default AtomEndpointBuilder password(String password) { - doSetProperty("password", password); - return this; - } - /** - * Sets the username to be used for basic authentication when polling - * from a HTTP feed. Notice: Basic authentication is not a secured - * method, and is not recommended to be used. - * - * The option is a: <code>java.lang.String</code> type. - * - * Group: security - * - * @param username the value to set - * @return the dsl builder - */ - @Deprecated - default AtomEndpointBuilder username(String username) { - doSetProperty("username", username); - return this; - } } /** @@ -943,10 +909,9 @@ public interface AtomEndpointBuilderFactory { private static final AtomHeaderNameBuilder INSTANCE = new AtomHeaderNameBuilder(); /** - * When consuming the org.apache.abdera.model.Feed object is set to this - * header. + * When consuming the List object is set to this header. * - * The option is a: {@code org.apache.abdera.model.Feed} type. + * The option is a: {@code java.util.List} type. * * Group: consumer * diff --git a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/RssEndpointBuilderFactory.java b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/RssEndpointBuilderFactory.java index a19584f3a52..d85434d5ef3 100644 --- a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/RssEndpointBuilderFactory.java +++ b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/RssEndpointBuilderFactory.java @@ -645,40 +645,6 @@ public interface RssEndpointBuilderFactory { doSetProperty("useFixedDelay", useFixedDelay); return this; } - /** - * Sets the password to be used for basic authentication when polling - * from a HTTP feed.Notice: Basic authentication is not a secured - * method, and is not recommended to be used. - * - * The option is a: <code>java.lang.String</code> type. - * - * Group: security - * - * @param password the value to set - * @return the dsl builder - */ - @Deprecated - default RssEndpointBuilder password(String password) { - doSetProperty("password", password); - return this; - } - /** - * Sets the username to be used for basic authentication when polling - * from a HTTP feed. Notice: Basic authentication is not a secured - * method, and is not recommended to be used. - * - * The option is a: <code>java.lang.String</code> type. - * - * Group: security - * - * @param username the value to set - * @return the dsl builder - */ - @Deprecated - default RssEndpointBuilder username(String username) { - doSetProperty("username", username); - return this; - } } /**