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

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


The following commit(s) were added to refs/heads/camel-4.14.x by this push:
     new 6f428c17d94 CAMEL-22441: components with supportFileReference should 
support resource: prefix
6f428c17d94 is described below

commit 6f428c17d94226522c03b85fb555a4d7919cd9da
Author: Claus Ibsen <[email protected]>
AuthorDate: Wed Sep 24 10:35:07 2025 +0200

    CAMEL-22441: components with supportFileReference should support resource: 
prefix
---
 .../src/main/java/org/apache/camel/support/LanguageSupport.java     | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git 
a/core/camel-support/src/main/java/org/apache/camel/support/LanguageSupport.java
 
b/core/camel-support/src/main/java/org/apache/camel/support/LanguageSupport.java
index 0794b2d22d2..18001cc0fb0 100644
--- 
a/core/camel-support/src/main/java/org/apache/camel/support/LanguageSupport.java
+++ 
b/core/camel-support/src/main/java/org/apache/camel/support/LanguageSupport.java
@@ -33,6 +33,12 @@ import org.apache.camel.util.TimeUtils;
  */
 public abstract class LanguageSupport implements Language, IsSingleton, 
CamelContextAware {
 
+    /**
+     * @deprecated use {@link ResourceHelper#RESOURCE}
+     */
+    @Deprecated
+    public static final String RESOURCE = "resource:";
+
     private static final String[] SIMPLE_FUNCTION_START = new String[] { "${", 
"$simple{" };
 
     private CamelContext camelContext;

Reply via email to