which produces:
<Conversation>
<srcDestination>Anywhere2</srcDestination>
<srcApprovalStatus>APP</srcApprovalStatus>
</Conversation>
<Conversation>
<srcDestination>Anywhere</srcDestination>
<srcApprovalStatus>APP</srcApprovalStatus>
</Conversation>
Now I need to include those "Conversation" elements into a
"Conversations" element. I can't move this to a separate class as it
is a part of a JPA business objects. Is there a way to add this
"Conversations" through annotations or similar solution?
Thanks.