* @param jsonString
* the Json string.
* @return the created WjrStore instance.
*/
WjrStore createWjrStoreFromJson(String jsonString) {
WjrStoreMeta m = WjrStoreMeta.meta();
WjrStore wjrStore = new WjrStore();
JSONObject j = JSONParser.parseStrict(jsonString).isObject();
JSONArray classItems = j.get(m.classItems).isArray();