unmarshaller.setMapping(mapping);
//-- turn off validation
unmarshaller.setValidation(false);
is = this.getClass().getResourceAsStream(TYPE_DEFINITIONS);
TypeList typeList = (TypeList)unmarshaller.unmarshal( new org.xml.sax.InputSource(is) );
//print what we just read (only in debug mode and if we have a logWriter)
// TODO: Joachim 2007-09-04 remove me
// LocalConfiguration config = LocalConfiguration.getInstance();
if (LOG.isDebugEnabled()) {