This is an automated email from the ASF dual-hosted git repository.
jleroux 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 af93af39bf Fixed: Error map is missing in the returned service result
(OFBIZ-13303)
af93af39bf is described below
commit af93af39bf0e6d91b40b59106f29b689d0e98c43
Author: Jacques Le Roux <[email protected]>
AuthorDate: Thu Oct 16 10:51:32 2025 +0200
Fixed: Error map is missing in the returned service result (OFBIZ-13303)
See details on Jira
Thanks: Wei Zhang
---
.../src/main/java/org/apache/ofbiz/service/ModelServiceReader.java | 1 +
1 file changed, 1 insertion(+)
diff --git
a/framework/service/src/main/java/org/apache/ofbiz/service/ModelServiceReader.java
b/framework/service/src/main/java/org/apache/ofbiz/service/ModelServiceReader.java
index 888bee86dc..72252a8243 100644
---
a/framework/service/src/main/java/org/apache/ofbiz/service/ModelServiceReader.java
+++
b/framework/service/src/main/java/org/apache/ofbiz/service/ModelServiceReader.java
@@ -475,6 +475,7 @@ public final class ModelServiceReader implements
Serializable {
service.addParam(createInternalParam(ModelService.RESPONSE_MESSAGE,
"String", ModelService.OUT_PARAM));
service.addParam(createInternalParam(ModelService.ERROR_MESSAGE,
"String", ModelService.OUT_PARAM));
service.addParam(createInternalParam(ModelService.ERROR_MESSAGE_LIST,
"java.util.List", ModelService.OUT_PARAM));
+ service.addParam(createInternalParam(ModelService.ERROR_MESSAGE_MAP,
"java.util.Map", ModelService.OUT_PARAM));
service.addParam(createInternalParam(ModelService.SUCCESS_MESSAGE,
"String", ModelService.OUT_PARAM));
service.addParam(createInternalParam(ModelService.SUCCESS_MESSAGE_LIST,
"java.util.List", ModelService.OUT_PARAM));
service.addParam(createInternalParam("userLogin",
"org.apache.ofbiz.entity.GenericValue", ModelService.IN_OUT_PARAM));