You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2023/02/09 09:22:40 UTC

[camel] 01/04: Regen for commit 452915ef143f92f4e28d46c03a219abfb1ef228e

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

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 6c7321b832dd705ff55daede44671c6c46e98a1d
Author: gnodet <gn...@users.noreply.github.com>
AuthorDate: Thu Feb 9 08:58:51 2023 +0000

    Regen for commit 452915ef143f92f4e28d46c03a219abfb1ef228e
    
    Signed-off-by: GitHub <no...@github.com>
---
 .../dsl/VertxWebsocketEndpointBuilderFactory.java  | 49 ++++++++++++++++++++++
 1 file changed, 49 insertions(+)

diff --git a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/VertxWebsocketEndpointBuilderFactory.java b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/VertxWebsocketEndpointBuilderFactory.java
index 55526c08e42..fcb176ec9e5 100644
--- a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/VertxWebsocketEndpointBuilderFactory.java
+++ b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/VertxWebsocketEndpointBuilderFactory.java
@@ -94,6 +94,41 @@ public interface VertxWebsocketEndpointBuilderFactory {
             doSetProperty("consumeAsClient", consumeAsClient);
             return this;
         }
+        /**
+         * Whether the server consumer will create a message exchange when a new
+         * WebSocket peer connects or disconnects.
+         * 
+         * The option is a: &lt;code&gt;boolean&lt;/code&gt; type.
+         * 
+         * Default: false
+         * Group: consumer
+         * 
+         * @param fireWebSocketConnectionEvents the value to set
+         * @return the dsl builder
+         */
+        default VertxWebsocketEndpointConsumerBuilder fireWebSocketConnectionEvents(
+                boolean fireWebSocketConnectionEvents) {
+            doSetProperty("fireWebSocketConnectionEvents", fireWebSocketConnectionEvents);
+            return this;
+        }
+        /**
+         * Whether the server consumer will create a message exchange when a new
+         * WebSocket peer connects or disconnects.
+         * 
+         * The option will be converted to a &lt;code&gt;boolean&lt;/code&gt;
+         * type.
+         * 
+         * Default: false
+         * Group: consumer
+         * 
+         * @param fireWebSocketConnectionEvents the value to set
+         * @return the dsl builder
+         */
+        default VertxWebsocketEndpointConsumerBuilder fireWebSocketConnectionEvents(
+                String fireWebSocketConnectionEvents) {
+            doSetProperty("fireWebSocketConnectionEvents", fireWebSocketConnectionEvents);
+            return this;
+        }
         /**
          * When consumeAsClient is set to true this sets the maximum number of
          * allowed reconnection attempts to a previously closed WebSocket. A
@@ -801,6 +836,20 @@ public interface VertxWebsocketEndpointBuilderFactory {
         public String vertxwebsocketRemoteaddress() {
             return "VertxWebsocket.remoteAddress";
         }
+
+        /**
+         * The WebSocket event that triggered the message exchange.
+         * 
+         * The option is a: {@code
+         * org.apache.camel.component.vertx.websocket.VertxWebsocketEvent} type.
+         * 
+         * Group: consumer
+         * 
+         * @return the name of the header {@code VertxWebsocket.event}.
+         */
+        public String vertxwebsocketEvent() {
+            return "VertxWebsocket.event";
+        }
     }
     static VertxWebsocketEndpointBuilder endpointBuilder(
             String componentName,