static Entry readFeedEntry(String feedType, Reader reader) throws JDOMException, IOException, IllegalArgumentException,
FeedException {
SAXBuilder builder = new SAXBuilder();
Document document = builder.build(reader);
Element root = document.getRootElement();
root.detach();
Feed feed = new Feed();
feed.setFeedType(feedType);
WireFeedOutput wireFeedOutput = new WireFeedOutput();
document = wireFeedOutput.outputJDom(feed);
document.getRootElement().addContent(root);