You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2020/03/15 12:00:08 UTC

[camel] branch master updated (0c89a9b -> 0ba7035)

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

davsclaus pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git.


    from 0c89a9b  CAMEL-14575: camel-core - TypeConverter from String to Long - drop time pattern
     new 9013fc0  CAMEL-14575: camel-core - TypeConverter from String to Long - drop time pattern
     new 0ba7035  CAMEL-14671: Make PropertiesFunction part of the PropertiesComponent SPI

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../component/properties/SpringPropertiesComponentFunctionTest.java     | 1 +
 .../org/apache/camel/test/AvailablePortFinderPropertiesFunction.java    | 2 +-
 .../resources/META-INF/services/org/apache/camel/TypeConverterLoader    | 1 -
 3 files changed, 2 insertions(+), 2 deletions(-)


[camel] 01/02: CAMEL-14575: camel-core - TypeConverter from String to Long - drop time pattern

Posted by da...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 9013fc0cf14a3312f4ca8423281b920836cdfd2b
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Sun Mar 15 12:57:44 2020 +0100

    CAMEL-14575: camel-core - TypeConverter from String to Long - drop time pattern
---
 .../resources/META-INF/services/org/apache/camel/TypeConverterLoader     | 1 -
 1 file changed, 1 deletion(-)

diff --git a/core/camel-base/src/generated/resources/META-INF/services/org/apache/camel/TypeConverterLoader b/core/camel-base/src/generated/resources/META-INF/services/org/apache/camel/TypeConverterLoader
index b0702fe..a16a584 100644
--- a/core/camel-base/src/generated/resources/META-INF/services/org/apache/camel/TypeConverterLoader
+++ b/core/camel-base/src/generated/resources/META-INF/services/org/apache/camel/TypeConverterLoader
@@ -7,5 +7,4 @@ org.apache.camel.converter.IOConverterLoader
 org.apache.camel.converter.NIOConverterLoader
 org.apache.camel.converter.ObjectConverterLoader
 org.apache.camel.converter.SQLConverterLoader
-org.apache.camel.converter.TimePatternConverterLoader
 org.apache.camel.impl.converter.UriTypeConverterLoader


[camel] 02/02: CAMEL-14671: Make PropertiesFunction part of the PropertiesComponent SPI

Posted by da...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 0ba7035f44a324d0f215362ed1454a5e42cdfc2a
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Sun Mar 15 12:58:01 2020 +0100

    CAMEL-14671: Make PropertiesFunction part of the PropertiesComponent SPI
---
 .../component/properties/SpringPropertiesComponentFunctionTest.java     | 1 +
 .../org/apache/camel/test/AvailablePortFinderPropertiesFunction.java    | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/components/camel-spring/src/test/java/org/apache/camel/component/properties/SpringPropertiesComponentFunctionTest.java b/components/camel-spring/src/test/java/org/apache/camel/component/properties/SpringPropertiesComponentFunctionTest.java
index 63598bf..ca90125 100644
--- a/components/camel-spring/src/test/java/org/apache/camel/component/properties/SpringPropertiesComponentFunctionTest.java
+++ b/components/camel-spring/src/test/java/org/apache/camel/component/properties/SpringPropertiesComponentFunctionTest.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.properties;
 
+import org.apache.camel.spi.PropertiesFunction;
 import org.apache.camel.spring.SpringTestSupport;
 import org.junit.Test;
 import org.springframework.context.support.AbstractXmlApplicationContext;
diff --git a/components/camel-test/src/main/java/org/apache/camel/test/AvailablePortFinderPropertiesFunction.java b/components/camel-test/src/main/java/org/apache/camel/test/AvailablePortFinderPropertiesFunction.java
index ceba743..ad6ed7c 100644
--- a/components/camel-test/src/main/java/org/apache/camel/test/AvailablePortFinderPropertiesFunction.java
+++ b/components/camel-test/src/main/java/org/apache/camel/test/AvailablePortFinderPropertiesFunction.java
@@ -19,7 +19,7 @@ package org.apache.camel.test;
 import java.util.Map;
 import java.util.concurrent.ConcurrentHashMap;
 
-import org.apache.camel.component.properties.PropertiesFunction;
+import org.apache.camel.spi.PropertiesFunction;
 import org.apache.camel.util.ObjectHelper;
 import org.apache.camel.util.StringHelper;