* @throw ClassCastException If the input data does not map to ModulePluginList
* @throw JAXBException Upon error reading the XML data
*/
public static ModulePluginList decode(Reader r, String server) throws JAXBException {
Unmarshaller u = jaxbContext.createUnmarshaller();
JarURIAdapter adapter = new JarURIAdapter(server);
u.setAdapter(adapter);
return (ModulePluginList)u.unmarshal(r);
}