JSONArray list = json.getJSONArray("data");
final int size = list.length();
ResponseList<Friend> friends = new ResponseListImpl<Friend>(size, json);
for (int i = 0; i < size; i++) {
JSONObject friendJSONObject = list.getJSONObject(i);
Friend friend = new FriendJSONImpl(friendJSONObject);
if (conf.isJSONStoreEnabled()) {
DataObjectFactoryUtil.registerJSONObject(friend, friendJSONObject);
}
friends.add(friend);
}