inObj.setAge(42);
inObj.setName("quarante deux");
refObj.setTest(inObj);
GenericSerializer ser = new Base64ByteSerialization();
String serd = ser.serializeObject(refObj);
Log.log(serd);
Test res = (Test)ser.unserializeObject(serd);
Log.log(res.getName());
}