Skip to content

Commit

Permalink
Merge pull request #2181 from GDLMadushanka/forEach2
Browse files Browse the repository at this point in the history
Add new parameter to for-each serializer
  • Loading branch information
GDLMadushanka authored May 22, 2024
2 parents edee202 + c3f6038 commit bca2ec7
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 bca2ec7

Please sign in to comment.