// Now seal all the schemas that have been imported to guarantee consistency with instance documents
Configuration config = getConfiguration();
Iterator iter = schemaIndex.iterator();
while (iter.hasNext()) {
String ns = (String)iter.next();
config.sealNamespace(ns);
}
}