}
},
*/
protected void setStaticContent(JSONObject obj){
JSONObject types = new JSONObject();
JSONObject tmpobj = new JSONObject();
tmpobj.put("pluralLabel", "Books"); //TODO-i18n
types.put("Book", tmpobj);
tmpobj = new JSONObject();
tmpobj.put("pluralLabel", "Categories"); //TODO-i18n
types.put("Category", tmpobj);
tmpobj = new JSONObject();
tmpobj.put("pluralLabel", "Keywords"); //TODO-i18n
types.put("Keyword", tmpobj);
tmpobj = new JSONObject();
tmpobj.put("pluralLabel", "People"); //TODO-i18n
types.put("Person", tmpobj);
tmpobj = new JSONObject();
tmpobj.put("pluralLabel", "events"); //TODO-i18n
types.put("event", tmpobj);
tmpobj = new JSONObject();
tmpobj.put("pluralLabel", "venues"); //TODO-i18n
types.put("venue", tmpobj);
tmpobj = new JSONObject();
tmpobj.put("pluralLabel", "conferences"); //TODO-i18n
types.put("conference", tmpobj);
obj.put("types", types);
JSONObject properties = new JSONObject();
tmpobj = new JSONObject();
tmpobj.put("valueType", "item");
properties.put("creator", tmpobj);
tmpobj = new JSONObject();
tmpobj.put("valueType", "item");
properties.put("editor", tmpobj);
tmpobj = new JSONObject();
tmpobj.put("valueType", "item");
properties.put("contributor", tmpobj);
tmpobj = new JSONObject();
tmpobj.put("valueType", "item");
properties.put("category", tmpobj);
tmpobj = new JSONObject();
tmpobj.put("valueType", "item");
properties.put("keyword", tmpobj);
tmpobj = new JSONObject();
tmpobj.put("valueType", "item");
properties.put("conference", tmpobj);
tmpobj = new JSONObject();
tmpobj.put("valueType", "item");
properties.put("event", tmpobj);
tmpobj = new JSONObject();
tmpobj.put("valueType", "item");
properties.put("venue", tmpobj);
obj.put("properties", properties);
}