String articleTitle = XMLUtils.getElementValue(dataRoot, "title");
if (articleTitle != null)
record.addValue("title", new StringValue(articleTitle));
String summary = XMLUtils.getElementValue(dataRoot, "summary");
if (summary != null)
record.addValue("summary", new StringValue(summary));
String year = XMLUtils.getElementValue(dataRoot, "published");
if (year != null)
record.addValue("published", new StringValue(year));
String splashPageUrl = XMLUtils.getElementValue(dataRoot, "id");
if (splashPageUrl != null)