// Add from the configuration the XML DOM names and type def
Map<String, ConfigurationEventTypeXMLDOM> xmlDOMNames = configSnapshot.getEventTypesXMLDOM();
for (Map.Entry<String, ConfigurationEventTypeXMLDOM> entry : xmlDOMNames.entrySet())
{
SchemaModel schemaModel = null;
if ((entry.getValue().getSchemaResource() != null) || (entry.getValue().getSchemaText() != null))
{
try
{
schemaModel = XSDSchemaMapper.loadAndMap(entry.getValue().getSchemaResource(), entry.getValue().getSchemaText(), 2);