Issue Type: Feature Request Feature Request
Affects Versions: 0.8
Assignee: Unassigned
Components: core
Created: 08/Mar/13 10:23 AM
Description:

Our default serialization behavior recognizes this as a setter:

public void setAmount(double amount) {
    this.amount = amount;
}

But not this:

public Offer setAmount(double amount) {
    this.amount = amount;
    return this;
}

End result is that deserialization doesn't set the field and the user is left scratching their head and demanding justice. Look into whether we can tweak the default behavior to recognize the latter example as a setter in serialization.

Fix Versions: 1.0
Project: SwitchYard
Priority: Major Major
Reporter: Keith Babo
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