This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch fac-bean
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/fac-bean by this push:
new 69ebb6664df CAMEL-19912: camel-core-model - Add factory-bean parameter
69ebb6664df is described below
commit 69ebb6664dfc850d532f6860080ea90f8a7cf07c
Author: Claus Ibsen <[email protected]>
AuthorDate: Tue Sep 26 13:20:24 2023 +0200
CAMEL-19912: camel-core-model - Add factory-bean parameter
---
.../test/java/org/apache/camel/component/jcr/JcrConverterTest.java | 5 +++++
1 file changed, 5 insertions(+)
diff --git
a/components/camel-jcr/src/test/java/org/apache/camel/component/jcr/JcrConverterTest.java
b/components/camel-jcr/src/test/java/org/apache/camel/component/jcr/JcrConverterTest.java
index cd4c0decd19..4f6fc8217f9 100644
---
a/components/camel-jcr/src/test/java/org/apache/camel/component/jcr/JcrConverterTest.java
+++
b/components/camel-jcr/src/test/java/org/apache/camel/component/jcr/JcrConverterTest.java
@@ -59,6 +59,11 @@ public class JcrConverterTest {
return null;
}
+ @Override
+ public <T> T newInstance(Class<T> type, Class<?>
factoryClass, String factoryMethod) {
+ return null;
+ }
+
@Override
public <T> T newInstance(Class<T> type, boolean
postProcessBean) {
return ObjectHelper.newInstance(type);