Skip to content

Commit

Permalink
Add new parameter to for-each serializer
Browse files Browse the repository at this point in the history
Add new parameter to for-each serializer
  • Loading branch information
GDLMadushanka committed May 22, 2024
1 parent ce73429 commit c3f6038
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ protected OMElement serializeSpecificMediator(Mediator m) {
forEachElem.addChild(seqElement);
}

if (forEachMed.getContinueLoopOnFailure()) {
forEachElem.addAttribute("continueLoopOnFailure", Boolean.toString(forEachMed.getContinueLoopOnFailure()), null);
}

serializeComments(forEachElem, forEachMed.getCommentsList());

return forEachElem;
Expand Down

0 comments on commit c3f6038

Please sign in to comment.