log.debug("loading xsd from InputStream");
LSInputAdaptor input = new LSInputAdaptor(is, encoding, baseURI);
XSImplementation impl = getXSImplementation();
XSLoader schemaLoader = impl.createXSLoader(null);
XSModel model = schemaLoader.load(input);
return model;
}
private static XSModel loadSchema(Reader reader, String encoding, String baseURI)
{