*/
@SuppressWarnings("unchecked")
public JSONObject process(String feedUrl, String feedXml,
boolean getSummaries, int numEntries) throws GadgetException {
try {
SyndFeed feed = new SyndFeedInput().build(new StringReader(feedXml));
JSONObject json = new JSONObject();
json.put("Title", feed.getTitle());
json.put("URL", feedUrl);
json.put("Description", feed.getDescription());
json.put("Link", feed.getLink());