*
*/
public class JsonStringToObjectTransformer {
public PdxInstance toObject(String json) {
JSONObject jsonObject = null;
try {
jsonObject = new JSONObject(json);
}
catch (JSONException e) {
throw new MessageTransformationException(e.getMessage());
}
return JSONFormatter.fromJSON(jsonObject.toString());
}