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

jungm pushed a commit to branch xbean-4.30-SNAPSHOT
in repository https://gitbox.apache.org/repos/asf/tomee.git


The following commit(s) were added to refs/heads/xbean-4.30-SNAPSHOT by this 
push:
     new 2e93afbccf define constructor arg types where arg name selection was 
used before
2e93afbccf is described below

commit 2e93afbccf04839d3fe544d7dc3679f3943c98c2
Author: Markus Jung <[email protected]>
AuthorDate: Sun Jan 4 21:02:42 2026 +0100

    define constructor arg types where arg name selection was used before
---
 .../src/main/resources/META-INF/org.apache.openejb/service-jar.xml   | 5 +++++
 1 file changed, 5 insertions(+)

diff --git 
a/container/openejb-core/src/main/resources/META-INF/org.apache.openejb/service-jar.xml
 
b/container/openejb-core/src/main/resources/META-INF/org.apache.openejb/service-jar.xml
index 991ecf5b7c..1a44c9b660 100644
--- 
a/container/openejb-core/src/main/resources/META-INF/org.apache.openejb/service-jar.xml
+++ 
b/container/openejb-core/src/main/resources/META-INF/org.apache.openejb/service-jar.xml
@@ -46,6 +46,7 @@
                    service="Container"
                    types="CMP_ENTITY"
                    constructor="id, transactionManager, securityService, 
CmpEngineFactory"
+                   constructor-types="java.lang.Object, 
jakarta.transaction.TransactionManager, org.apache.openejb.spi.SecurityService, 
java.lang.String"
                    class-name="org.apache.openejb.core.cmp.CmpContainer">
 
     CmpEngineFactory org.apache.openejb.core.cmp.jpa.JpaCmpEngineFactory
@@ -61,6 +62,7 @@
           service="Container"
           types="BMP_ENTITY"
           constructor="id, securityService, PoolSize"
+          constructor-types="java.lang.Object, 
org.apache.openejb.spi.SecurityService, int"
           class-name="org.apache.openejb.core.entity.EntityContainer">
 
     # Specifies the size of the bean pools for this
@@ -345,6 +347,7 @@
           service="Container"
           types="SINGLETON"
           constructor="id, securityService"
+          constructor-types="java.lang.Object, 
org.apache.openejb.spi.SecurityService"
           class-name="org.apache.openejb.core.singleton.SingletonContainer">
 
     # Specifies the maximum time an invocation could wait for the
@@ -456,6 +459,7 @@
           service="Container"
           types="MANAGED"
           constructor="id, securityService"
+          constructor-types="java.lang.Object, 
org.apache.openejb.spi.SecurityService"
           class-name="org.apache.openejb.core.managed.ManagedContainer">
 
   </ServiceProvider>
@@ -722,6 +726,7 @@
           service="Resource"
           types="jakarta.jms.Topic, Topic, jakarta.jms.Destination"
           constructor="destination"
+          constructor-types="java.lang.String"
           class-name="org.apache.activemq.command.ActiveMQTopic">
 
     # Specifies the name of the topic

Reply via email to