public ArrayList<SocialEntry> retrieveSocialFeed(String url, Context context) {

    String response = httpRetriever.retrieve(url, context);
    return xmlParser.parseSocialFeedResponse(response);
  }