/*
* We need to do some formatting on the response
*/
Map<String,Object> response = new HashMap<String,Object>();
ORMModelInstance modelInstance = model.getModelInstance();
response.put("data", modelInstance.getData());
response.put("id", modelInstance.getData().get("id"));
response.put("success", true);
printStream.print(StringUtilities.json(response));
printStream.close();
}