public void marshall(Object obj, String outputFile)
throws MappingException {
File f = new File(outputFile);
File dir = f.getParentFile();
if(f==null || !dir.isDirectory())
{throw new MappingException("Parent directory of file " + outputFile + " doesn't exist");}
if(!(obj instanceof MapperConfig))
{throw new MappingException("Object must be an instance of MapperConfig class");}
try {
Mapping mapping = new Mapping();
URL mappingUrl = Thread.currentThread().getContextClassLoader()
.getResource(mappingFile);
mapping.loadMapping(mappingUrl);
FileWriter writer = new FileWriter(outputFile);
Marshaller marshaller = new Marshaller(writer);
marshaller.setEncoding(ConsoleCst.MAPPING_ENCODING);
marshaller.setMapping(mapping);
marshaller.marshal(obj);
} catch (Throwable th) {
throw new MappingException("Marshall exception occured: "+th);
}
}