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

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


The following commit(s) were added to refs/heads/camel-main by this push:
     new 00cdc52097 Fixed compilation error with qute
00cdc52097 is described below

commit 00cdc52097287ef269434178971f295ed022a0ef
Author: Jiri Ondrusek <[email protected]>
AuthorDate: Fri Oct 3 12:11:33 2025 +0200

    Fixed compilation error with qute
---
 .../camel/quarkus/core/QuarkusContextServiceLoaderPlugin.java       | 3 +--
 .../org/apache/camel/component/qute/QuteEndpointUriFactory.java     | 6 +++---
 2 files changed, 4 insertions(+), 5 deletions(-)

diff --git 
a/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/QuarkusContextServiceLoaderPlugin.java
 
b/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/QuarkusContextServiceLoaderPlugin.java
index 16465720eb..fe4e28b04c 100644
--- 
a/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/QuarkusContextServiceLoaderPlugin.java
+++ 
b/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/QuarkusContextServiceLoaderPlugin.java
@@ -22,7 +22,6 @@ import org.apache.camel.CamelContext;
 import org.apache.camel.spi.ContextServiceLoaderPluginResolver;
 import org.apache.camel.spi.ContextServicePlugin;
 import org.apache.camel.support.service.ServiceSupport;
-
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
@@ -84,4 +83,4 @@ public class QuarkusContextServiceLoaderPlugin extends 
ServiceSupport implements
     public CamelContext getCamelContext() {
         return camelContext;
     }
-}
\ No newline at end of file
+}
diff --git 
a/extensions/qute/component/src/generated/java/org/apache/camel/component/qute/QuteEndpointUriFactory.java
 
b/extensions/qute/component/src/generated/java/org/apache/camel/component/qute/QuteEndpointUriFactory.java
index b6ae91a164..19ae26e46f 100644
--- 
a/extensions/qute/component/src/generated/java/org/apache/camel/component/qute/QuteEndpointUriFactory.java
+++ 
b/extensions/qute/component/src/generated/java/org/apache/camel/component/qute/QuteEndpointUriFactory.java
@@ -21,7 +21,7 @@ public class QuteEndpointUriFactory extends 
org.apache.camel.support.component.E
 
     private static final Set<String> PROPERTY_NAMES;
     private static final Set<String> SECRET_PROPERTY_NAMES;
-    private static final Set<String> MULTI_VALUE_PREFIXES;
+    private static final Map<String, String> MULTI_VALUE_PREFIXES;
     static {
         Set<String> props = new HashSet<>(6);
         props.add("allowContextMapAll");
@@ -32,7 +32,7 @@ public class QuteEndpointUriFactory extends 
org.apache.camel.support.component.E
         props.add("resourceUri");
         PROPERTY_NAMES = Collections.unmodifiableSet(props);
         SECRET_PROPERTY_NAMES = Collections.emptySet();
-        MULTI_VALUE_PREFIXES = Collections.emptySet();
+        MULTI_VALUE_PREFIXES = Collections.emptyMap();
     }
 
     @Override
@@ -63,7 +63,7 @@ public class QuteEndpointUriFactory extends 
org.apache.camel.support.component.E
     }
 
     @Override
-    public Set<String> multiValuePrefixes() {
+    public Map<String, String> multiValuePrefixes() {
         return MULTI_VALUE_PREFIXES;
     }
 

Reply via email to