|
View:
New views
2 Messages
—
Rating Filter:
Alert me
|
|
|
Exclude properties on serialization time.Hi,
Let's take for example a class: @Root public class Parent { @ElementList(required = false) Set<Child> children = new TreeSet<Child>(); public void setChildren(Set<Child> children) { this.children=children; } public Set<Child> getChildren() { return children; } } Most of the time, I need the children to appear in the XML when I serialize a instance of Parent object. However, there are times when I don't want the children in the xml. Is there a way to exclude certain properties on serialization time? Joen Moreno ------------------------------------------------------------------------------ Come build with us! The BlackBerry® Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9-12, 2009. Register now! http://p.sf.net/sfu/devconf _______________________________________________ Simple-support mailing list Simple-support@... https://lists.sourceforge.net/lists/listinfo/simple-support |
|
|
Re: Exclude properties on serialization time.Hi,
You could use the @Replace annotation like so. @Root public class Parent { @ElementList(required = false) Set<Child> children = new TreeSet<Child>(); boolean someCondition; private Parent(Set<Child> children) { this.children = children; } @Replace private Parent replaceParent() { if(someCondition) { return this; } return new Parent(null); } public void setChildren(Set<Child> children) { this.children=children; } public Set<Child> getChildren() { return children; } } That should do the trick. Niall Niall Gallagher RBS Global Banking & Markets Office: +44 7879498724 -----Original Message----- From: Joselito D. Moreno [mailto:joenmoreno@...] Sent: 30 September 2009 21:36 To: simple-support@... Subject: [Simple-support] Exclude properties on serialization time. Hi, Let's take for example a class: @Root public class Parent { @ElementList(required = false) Set<Child> children = new TreeSet<Child>(); public void setChildren(Set<Child> children) { this.children=children; } public Set<Child> getChildren() { return children; } } Most of the time, I need the children to appear in the XML when I serialize a instance of Parent object. However, there are times when I don't want the children in the xml. Is there a way to exclude certain properties on serialization time? Joen Moreno ------------------------------------------------------------------------------ Come build with us! The BlackBerry® Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9-12, 2009. Register now! http://p.sf.net/sfu/devconf _______________________________________________ Simple-support mailing list Simple-support@... https://lists.sourceforge.net/lists/listinfo/simple-support *********************************************************************************** The Royal Bank of Scotland plc. Registered in Scotland No 90312. Registered Office: 36 St Andrew Square, Edinburgh EH2 2YB. Authorised and regulated by the Financial Services Authority. This e-mail message is confidential and for use by the addressee only. If the message is received by anyone other than the addressee, please return the message to the sender by replying to it and then delete the message from your computer. Internet e-mails are not necessarily secure. The Royal Bank of Scotland plc does not accept responsibility for changes made to this message after it was sent. Whilst all reasonable care has been taken to avoid the transmission of viruses, it is the responsibility of the recipient to ensure that the onward transmission, opening or use of this message and any attachments will not adversely affect its systems or data. No responsibility is accepted by The Royal Bank of Scotland plc in this regard and the recipient should carry out such virus and other checks as it considers appropriate. Visit our website at www.rbs.com *********************************************************************************** ------------------------------------------------------------------------------ Come build with us! The BlackBerry® Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9-12, 2009. Register now! http://p.sf.net/sfu/devconf _______________________________________________ Simple-support mailing list Simple-support@... https://lists.sourceforge.net/lists/listinfo/simple-support |
| Free embeddable forum powered by Nabble | Forum Help |