for (Element element : elements) {
String title = element.getChildText(RSS_TITLE, rootElement.getNamespace());
String publishedBuild = element.getChildText(RSS_PUBLISHED, rootElement.getNamespace());
String jobName = RssUtil.extractBuildJob(title);
String number = RssUtil.extractBuildNumber(title);
BuildStatusEnum status = RssUtil.extractStatus(title);
Element linkElement = element.getChild(RSS_LINK, rootElement.getNamespace());
String link = linkElement.getAttributeValue(RSS_LINK_HREF);
if (!BuildStatusEnum.NULL.equals(status)) {
buildMap.put(jobName, Build.createBuildFromRss(link, number, status.getStatus(), Boolean.FALSE.toString(), publishedBuild, title));
}
}