[xstream-user] Unable to create new JIRA entry

2015-05-04 Thread Neubauer. Rico
Hi, Quite weird.. I was trying to create a new JIRA entry (http://jira.codehaus.org/secure/CreateIssue!default.jspa), but XStream (XSTR) is not available as project. Yes, I am logged in and all(?) other projects are available. Tried with 2 different browsers. See

Re: [xstream-user] Unable to create new JIRA entry

2015-05-04 Thread Paul Hammant
Codehaus is closing down. Jorg is moving the bits and pieces off Codehaus to Github. Refer - https://github.com/x-stream On Mon, May 4, 2015 at 6:00 AM, Neubauer. Rico r.neuba...@seeburger.de wrote: Hi, Quite weird.. I was trying to create a new JIRA entry (

RE: [xstream-user] Unable to create new JIRA entry

2015-05-04 Thread Neubauer. Rico
Ah thanks. Homepage should get an update then though. From: Paul Hammant [mailto:p...@hammant.org] Sent: Monday, May 04, 2015 1:58 PM To: user@xstream.codehaus.org Subject: Re: [xstream-user] Unable to create new JIRA entry Codehaus is closing down. Jorg is moving the bits and pieces off

RE: [xstream-user] RE: Unable to create new JIRA entry

2015-05-04 Thread Neubauer. Rico
Aye - created my issue in github in the meantime. https://github.com/x-stream/xstream/issues/2 BR Rico -Original Message- From: Jörg Schaible [mailto:joerg.schai...@swisspost.com] Sent: Monday, May 04, 2015 5:12 PM To: user@xstream.codehaus.org Subject: [xstream-user] RE: Unable to

[xstream-user] Question on serialization

2015-05-04 Thread Abhiram Panyam
I would like to know if I can serialize methods in addition to fields. For instance, I have the following class public class offerVO { private Long offerId; private String offer; public OfferVO() { } public Long getOfferId() { return

[xstream-user] Re: Question on serialization

2015-05-04 Thread Jörg Schaible
Hi Abhi, Abhiram Panyam wrote: I would like to know if I can serialize methods in addition to fields. For instance, I have the following class public class offerVO { private Long offerId; private String offer; public OfferVO() { } public Long

[xstream-user] Question on nesting

2015-05-04 Thread Abhiram Panyam
I have the following classes public class AddressVO { private String street; private String city; private String state; private String postalCode; private GeographicCoordinates geoCoordinates; //constructor, getters and setters } and