@ProviderType
public interface SecureDocumentBuilderFactory
Modifier and Type | Method and Description |
---|---|
javax.xml.parsers.DocumentBuilderFactory |
createSecureBuilderFactory(java.lang.Boolean setNamespaceAware)
Invoked when a new instance of DocumentBuilderFactory is required.
|
javax.xml.parsers.DocumentBuilderFactory createSecureBuilderFactory(java.lang.Boolean setNamespaceAware) throws javax.xml.parsers.ParserConfigurationException
setNamespaceAware
- Whether to set NamespaceAware configuration for DocumentBuilderFactory to true or not.javax.xml.parsers.ParserConfigurationException
- If a DocumentBuilder cannot be created which satisfies the configuration requested.
Following configurations has been added
factory.setNamespaceAware(true);
factory.setValidating(true);
factory.setExpandEntityReferences(false);
factory.setFeature("http://xml.org/sax/features/validation", true);
// do not include external general entities
factory.setFeature("http://xml.org/sax/features/external-general-entities", false);
// do not include external parameter entities or the external DTD subset
factory.setFeature("http://xml.org/sax/features/external-parameter-entities", false);
// build the grammar but do not use the default attributes and attribute types information it contains
factory.setFeature("http://apache.org/xml/features/nonvalidating/load-dtd-grammar", false);
// ignore the external DTD completely
factory.setFeature("http://apache.org/xml/features/nonvalidating/load-external-dtd", false);Copyright © 2010 - 2020 Adobe. All Rights Reserved