This is an automated email from the ASF dual-hosted git repository.
nmalin pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
The following commit(s) were added to refs/heads/trunk by this push:
new 25477b12c5 Improved: Improve Uel loading (OFBIZ-13372)
25477b12c5 is described below
commit 25477b12c57a8cef5dc3cf16450264d1e809b0aa
Author: Nicolas Malin <[email protected]>
AuthorDate: Mon Jun 1 10:34:54 2026 +0200
Improved: Improve Uel loading (OFBIZ-13372)
Complete ofbiz-component.xsd with new element uel-mapping
---
framework/base/dtd/ofbiz-component.xsd | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/framework/base/dtd/ofbiz-component.xsd
b/framework/base/dtd/ofbiz-component.xsd
index b6f7279db4..307ad0587d 100644
--- a/framework/base/dtd/ofbiz-component.xsd
+++ b/framework/base/dtd/ofbiz-component.xsd
@@ -30,6 +30,7 @@ under the License.
<xs:element minOccurs="0" maxOccurs="unbounded"
ref="keystore"/>
<xs:element minOccurs="0" maxOccurs="unbounded" ref="webapp"/>
<xs:element minOccurs="0" maxOccurs="unbounded"
ref="container"/>
+ <xs:element minOccurs="0" maxOccurs="unbounded"
ref="uel-mapping"/>
</xs:sequence>
<xs:attributeGroup ref="attlist.ofbiz-component"/>
</xs:complexType>
@@ -297,4 +298,13 @@ under the License.
<xs:any minOccurs="0" maxOccurs="unbounded"
processContents="skip"/>
</xs:sequence>
</xs:complexType>
+ <xs:element name="uel-mapping">
+ <xs:complexType>
+ <xs:attributeGroup ref="attlist.uel-mapping"/>
+ </xs:complexType>
+ </xs:element>
+ <xs:attributeGroup name="attlist.uel-mapping">
+ <xs:attribute type="xs:string" name="name" use="required"/>
+ <xs:attribute type="xs:string" name="class-name" use="required"/>
+ </xs:attributeGroup>
</xs:schema>