result.setName(JsonInput.getStringOrNull(content, "name"));
return result;
}
public static WikiPage parseWikiPage(JSONObject object) throws JSONException {
WikiPage wikiPage = WikiPageFactory.create(JsonInput.getStringNotNull(object, "title"));
wikiPage.setVersion(JsonInput.getIntOrNull(object, "version"));
wikiPage.setCreatedOn(getDateOrNull(object, "created_on"));
wikiPage.setUpdatedOn(getDateOrNull(object, "updated_on"));
return wikiPage;
}