[ 
https://issues.apache.org/jira/browse/SYNCOPE-288?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Francesco Chicchiriccò updated SYNCOPE-288:
-------------------------------------------

    Description: 
Like found in SYNCOPE-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);
        }
    }


  was:
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);
        }
    }


    
> 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: Sub-task
>          Components: core
>    Affects Versions: 1.1.0
>            Reporter: Christian Schneider
>            Assignee: Christian Schneider
>             Fix For: 1.1.0
>
>
> Like found in SYNCOPE-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