JSONObject root = new JSONObject(response.getResponse());
JSONArray notificationArr = root.getJSONArray("notifications");
for (int a = 0; a < notificationArr.length(); a++) {
JSONObject aNotification = notificationArr.getJSONObject(a);
rslt.add(new Notification(aNotification));
}
return rslt;
}