I have a list of an object like follows
List<ProductInfo>
I want to serialize it using flex json so that it should like
[{"product_id":"2","name":'stack"'},{"product_id":"2","name":"overflow"}]"
for deserializing from the above string into a List of Objects I am using the following code
final List<ProductInformation> productInformationList = new JSONDeserializer<List<ProductInformation>>().use(null, ArrayList.class)
.use("values", ProductInformation.class).deserialize(parameterValue);
for serializing the object to string I am doing this but it's not working....I am missing something...
final String serializizedString = new JSONSerializer().serialize(productInformationList);
What do I need to serialize the object into a string?