Christian Schneider created SYNCOPE-288:
-------------------------------------------

             Summary: Make setters of Transfer Objects (TO) compatible to CXF 
and JAXB
                 Key: SYNCOPE-288
                 URL: https://issues.apache.org/jira/browse/SYNCOPE-288
             Project: Syncope
          Issue Type: Improvement
          Components: core
    Affects Versions: 1.1.0
            Reporter: Christian Schneider
            Assignee: Christian Schneider
             Fix For: 1.1.0


Like found in issue 231 there is a way to make the setters of TOs work with 
CXF. So this issue is to change them to the new style.

    public void setOrders(List<Order> orders) {
        if (this.orders != orders) {
            this.orders.clear();
            this.orders.addAll(orders);
        }
    }


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to