You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@syncope.apache.org by "Christian Schneider (JIRA)" <ji...@apache.org> on 2013/01/23 12:18:14 UTC

[jira] [Created] (SYNCOPE-288) Make setters of Transfer Objects (TO) compatible to CXF and JAXB

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