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:10 UTC

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

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;