Hello,
I'm thinking of using the XStream library but I have a couple of questions/concerns.
Say I have a complex object that I want to serialize into XML (or JSON) using XStream. Is XStream able to handle this without any extra work?
For example:
class Foo
{
    private Bar bar;
    private string name;
    // Getters and Setters
}
class Bar
{
    private Integer id;
    private string name;
    // getters and setters
}
Can XStream handle this correctly? Thanks!