public static Document getJdomDocument(InputStream input)
throws JDOMException, IOException {
try {
return new DOMBuilder().build(getDocument(input));
} catch (SAXException e) {
throw new JDOMException("couldn't parse xml", e);
} catch (ParserConfigurationException e) {
throw new JDOMException("could not configure parser", e);
}
}