public T map(CmsObject cms, String fileUri) throws MappingException, CmsException {
Locale locale = OpenCms.getLocaleManager().getDefaultLocale(cms, fileUri);
return map(cms, locale, fileUri, "");
}
public T map(CmsObject cms, Locale locale, String fileUri, String xpathPrefix) throws MappingException, CmsException {
CmsFile file = cms.readFile(fileUri);
CmsXmlContent xml = CmsXmlContentFactory.unmarshal(cms, file);
return map(cms, locale, xml, xpathPrefix);
}