[
https://issues.apache.org/jira/browse/OFBIZ-9303?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15957129#comment-15957129 ]
Michael Brohl edited comment on OFBIZ-9303 at 4/5/17 4:16 PM:
--------------------------------------------------------------
Thanks for the initative, [~devanshu.vyas]!
was (Author: mbrohl):
Thanks for the initative, Devanshu!
> Remove hard-coded success/error message variables set in service output
> ------------------------------------------------------------------------
>
> Key: OFBIZ-9303
> URL:
https://issues.apache.org/jira/browse/OFBIZ-9303> Project: OFBiz
> Issue Type: Improvement
> Components: ALL COMPONENTS
> Affects Versions: Trunk
> Reporter: Devanshu Vyas
> Priority: Minor
>
> I found that certain services in OFBiz set error/success message values in o hard-codedly like:
> {code}
> result.put("errorMessage", errMsg);
> result.put("successMessage", message);
> {code}
> I think it shouldn't be set like this, as we have constants in ModelService class for this purpose. ModelService.ERROR_MESSAGE/ModelService.SUCCESS_MESSAGE should be used to set the error and success messages, for in case we want to change the constant's value, no services will be affected.
> {code}
> result.put(ModelService.ERROR_MESSAGE, errMsg);
> result.put(ModelService.SUCCESS_MESSAGE, errMsg);
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)