public class XMLReaderSchemaFactory extends AbstractReaderSchemaFactory
XMLReaderJDOMFactory
class returns XMLReaders configured to
validate against the supplied Schema instance. The Schema could be an XSD
schema or some other schema supported by SAX (e.g. RelaxNG). The SAX Parser
is obtained through the JAXP process.
If you want to validate an XML document against the XSD references embedded
in the XML itself (xsdSchemaLocation) then you do not want to use this class
but rather use an alternate means like
XMLReaders.XSDVALIDATING
.
See the package documentation
for the best
alternatives.
org.jdom2.input.sax
Constructor and Description |
---|
XMLReaderSchemaFactory(javax.xml.validation.Schema schema)
XMLReader instances from this class will be configured to validate using
the supplied Schema instance.
|
XMLReaderSchemaFactory(java.lang.String factoryClassName,
java.lang.ClassLoader classloader,
javax.xml.validation.Schema schema)
XMLReader instances from this class will be configured to validate using
the supplied Schema instance, and use the specified JAXP SAXParserFactory.
|
createXMLReader, isValidating
public XMLReaderSchemaFactory(javax.xml.validation.Schema schema)
schema
- The Schema to use for validation.public XMLReaderSchemaFactory(java.lang.String factoryClassName, java.lang.ClassLoader classloader, javax.xml.validation.Schema schema)
factoryClassName
- The name of the SAXParserFactory class to useclassloader
- The classLoader to use for loading the SAXParserFactory.schema
- The Schema to use for validation.Copyright © 2021 Jason Hunter, Brett McLaughlin. All Rights Reserved.