// Look for the converter that accepts vendor specific deployment descriptors
// and let it convert them
Iterator i = converterList.iterator();
while(i.hasNext())
{
Convertor converter = (Convertor)i.next();
if(converter.accepts(di.url))
{
// Convert them to JBoss specific DDs
converter.convert(di, inflateDest);
// Now conversion is done and we can leave
break;
}
}