Searched refs:XMLSecurityPropertyManager (Results 1 - 20 of 20) sorted by relevance

/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/parsers/
H A DSAXParser.java27 import com.sun.org.apache.xerces.internal.utils.XMLSecurityPropertyManager;
145 securityPropertyManager = new XMLSecurityPropertyManager();
147 securityPropertyManager = (XMLSecurityPropertyManager)value;
159 securityPropertyManager = new XMLSecurityPropertyManager();
168 * XMLSecurityPropertyManager
170 securityPropertyManager.setValue(index, XMLSecurityPropertyManager.State.APIPROPERTY, (String)value);
H A DXMLParser.java28 import com.sun.org.apache.xerces.internal.utils.XMLSecurityPropertyManager;
87 XMLSecurityPropertyManager securityPropertyManager;
136 securityPropertyManager = new XMLSecurityPropertyManager();
H A DDOMParser.java34 import com.sun.org.apache.xerces.internal.utils.XMLSecurityPropertyManager;
546 securityPropertyManager = new XMLSecurityPropertyManager();
548 securityPropertyManager = (XMLSecurityPropertyManager)value;
560 securityPropertyManager = new XMLSecurityPropertyManager();
569 * XMLSecurityPropertyManager
571 securityPropertyManager.setValue(index, XMLSecurityPropertyManager.State.APIPROPERTY, (String)value);
635 XMLSecurityPropertyManager spm = (XMLSecurityPropertyManager)
H A DDTDConfiguration.java40 import com.sun.org.apache.xerces.internal.utils.XMLSecurityPropertyManager;
427 setProperty(XML_SECURITY_PROPERTY_MANAGER, new XMLSecurityPropertyManager());
H A DNonValidatingConfiguration.java39 import com.sun.org.apache.xerces.internal.utils.XMLSecurityPropertyManager;
389 setProperty(XML_SECURITY_PROPERTY_MANAGER, new XMLSecurityPropertyManager());
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/utils/
H A DXMLSecurityPropertyManager.java36 public final class XMLSecurityPropertyManager extends FeaturePropertyBase { class in inherits:FeaturePropertyBase
68 public XMLSecurityPropertyManager() { method in class:XMLSecurityPropertyManager
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/
H A DPropertyManager.java29 import com.sun.org.apache.xerces.internal.utils.XMLSecurityPropertyManager;
68 private XMLSecurityPropertyManager fSecurityPropertyMgr;
95 fSecurityPropertyMgr = (XMLSecurityPropertyManager)getProperty(XML_SECURITY_PROPERTY_MANAGER);
139 fSecurityPropertyMgr = new XMLSecurityPropertyManager();
204 fSecurityPropertyMgr = new XMLSecurityPropertyManager();
206 fSecurityPropertyMgr = (XMLSecurityPropertyManager)value;
217 !fSecurityPropertyMgr.setValue(property, XMLSecurityPropertyManager.State.APIPROPERTY, value)) {
H A DXMLDocumentFragmentScannerImpl.java45 import com.sun.org.apache.xerces.internal.utils.XMLSecurityPropertyManager;
613 XMLSecurityPropertyManager spm = (XMLSecurityPropertyManager)
615 fAccessExternalDTD = spm.getValue(XMLSecurityPropertyManager.Property.ACCESS_EXTERNAL_DTD);
660 XMLSecurityPropertyManager spm = (XMLSecurityPropertyManager)
662 fAccessExternalDTD = spm.getValue(XMLSecurityPropertyManager.Property.ACCESS_EXTERNAL_DTD);
794 XMLSecurityPropertyManager spm = (XMLSecurityPropertyManager)value;
795 fAccessExternalDTD = spm.getValue(XMLSecurityPropertyManager
[all...]
H A DXMLEntityManager.java33 import com.sun.org.apache.xerces.internal.utils.XMLSecurityPropertyManager;
1552 XMLSecurityPropertyManager spm = (XMLSecurityPropertyManager) propertyManager.getProperty(XML_SECURITY_PROPERTY_MANAGER);
1553 fAccessExternalDTD = spm.getValue(XMLSecurityPropertyManager.Property.ACCESS_EXTERNAL_DTD);
1631 XMLSecurityPropertyManager spm = (XMLSecurityPropertyManager) componentManager.getProperty(XML_SECURITY_PROPERTY_MANAGER, null);
1633 spm = new XMLSecurityPropertyManager();
1635 fAccessExternalDTD = spm.getValue(XMLSecurityPropertyManager.Property.ACCESS_EXTERNAL_DTD);
1800 XMLSecurityPropertyManager spm = (XMLSecurityPropertyManager)valu
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/utils/
H A DXMLSecurityPropertyManager.java35 public final class XMLSecurityPropertyManager { class
85 public XMLSecurityPropertyManager() { method in class:XMLSecurityPropertyManager
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/jaxp/
H A DSAXParserImpl.java30 import com.sun.org.apache.xerces.internal.utils.XMLSecurityPropertyManager;
114 private final XMLSecurityPropertyManager fSecurityPropertyMgr;
133 fSecurityPropertyMgr = new XMLSecurityPropertyManager();
169 fSecurityPropertyMgr.setValue(XMLSecurityPropertyManager.Property.ACCESS_EXTERNAL_DTD,
170 XMLSecurityPropertyManager.State.FSP, Constants.EXTERNAL_ACCESS_DEFAULT_FSP);
171 fSecurityPropertyMgr.setValue(XMLSecurityPropertyManager.Property.ACCESS_EXTERNAL_SCHEMA,
172 XMLSecurityPropertyManager.State.FSP, Constants.EXTERNAL_ACCESS_DEFAULT_FSP);
394 private XMLSecurityPropertyManager fSecurityPropertyMgr;
401 JAXPSAXParser(SAXParserImpl saxParser, XMLSecurityPropertyManager securityPropertyMgr,
422 fSecurityPropertyMgr = new XMLSecurityPropertyManager();
[all...]
H A DDocumentBuilderImpl.java39 import com.sun.org.apache.xerces.internal.utils.XMLSecurityPropertyManager;
40 import com.sun.org.apache.xerces.internal.utils.XMLSecurityPropertyManager.Property;
41 import com.sun.org.apache.xerces.internal.utils.XMLSecurityPropertyManager.State;
126 private XMLSecurityPropertyManager fSecurityPropertyMgr;
173 fSecurityPropertyMgr = new XMLSecurityPropertyManager();
302 !fSecurityPropertyMgr.setValue(name, XMLSecurityPropertyManager.State.APIPROPERTY, val)) {
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DXMLSchemaFactory.java34 import com.sun.org.apache.xerces.internal.utils.XMLSecurityPropertyManager;
122 private XMLSecurityPropertyManager fSecurityPropertyMgr;
159 fSecurityPropertyMgr = new XMLSecurityPropertyManager();
441 fSecurityPropertyMgr.setValue(XMLSecurityPropertyManager.Property.ACCESS_EXTERNAL_DTD,
442 XMLSecurityPropertyManager.State.FSP, Constants.EXTERNAL_ACCESS_DEFAULT_FSP);
443 fSecurityPropertyMgr.setValue(XMLSecurityPropertyManager.Property.ACCESS_EXTERNAL_SCHEMA,
444 XMLSecurityPropertyManager.State.FSP, Constants.EXTERNAL_ACCESS_DEFAULT_FSP);
489 fSecurityPropertyMgr = new XMLSecurityPropertyManager();
491 fSecurityPropertyMgr = (XMLSecurityPropertyManager)object;
507 !fSecurityPropertyMgr.setValue(name, XMLSecurityPropertyManager
[all...]
H A DXMLSchemaValidatorComponentManager.java43 import com.sun.org.apache.xerces.internal.utils.XMLSecurityPropertyManager;
215 private final XMLSecurityPropertyManager fSecurityPropertyMgr;
307 fSecurityPropertyMgr = (XMLSecurityPropertyManager)
379 fSecurityPropertyMgr.setValue(XMLSecurityPropertyManager.Property.ACCESS_EXTERNAL_DTD,
380 XMLSecurityPropertyManager.State.FSP, Constants.EXTERNAL_ACCESS_DEFAULT_FSP);
381 fSecurityPropertyMgr.setValue(XMLSecurityPropertyManager.Property.ACCESS_EXTERNAL_SCHEMA,
382 XMLSecurityPropertyManager.State.FSP, Constants.EXTERNAL_ACCESS_DEFAULT_FSP);
460 !fSecurityPropertyMgr.setValue(propertyId, XMLSecurityPropertyManager.State.APIPROPERTY, value)) {
H A DValidatorHandlerImpl.java55 import com.sun.org.apache.xerces.internal.utils.XMLSecurityPropertyManager;
697 XMLSecurityPropertyManager spm = (XMLSecurityPropertyManager)
700 spm.getValue(XMLSecurityPropertyManager.Property.ACCESS_EXTERNAL_DTD));
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/
H A DXMLSchemaLoader.java46 import com.sun.org.apache.xerces.internal.utils.XMLSecurityPropertyManager;
477 XMLSecurityPropertyManager spm = (XMLSecurityPropertyManager)state;
478 faccessExternalSchema = spm.getValue(XMLSecurityPropertyManager.Property.ACCESS_EXTERNAL_SCHEMA);
1004 XMLSecurityPropertyManager spm = (XMLSecurityPropertyManager)componentManager.getProperty(XML_SECURITY_PROPERTY_MANAGER);
1006 spm = new XMLSecurityPropertyManager();
1014 faccessExternalSchema = spm.getValue(XMLSecurityPropertyManager.Property.ACCESS_EXTERNAL_SCHEMA);
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DTransformerFactoryImpl.java29 import com.sun.org.apache.xalan.internal.utils.XMLSecurityPropertyManager;
30 import com.sun.org.apache.xalan.internal.utils.XMLSecurityPropertyManager.Property;
234 private XMLSecurityPropertyManager _xmlSecurityPropertyMgr;
277 _xmlSecurityPropertyMgr = new XMLSecurityPropertyManager();
526 _xmlSecurityPropertyMgr.setValue(name, XMLSecurityPropertyManager.State.APIPROPERTY, value)) {
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/dom/
H A DDOMConfigurationImpl.java37 import com.sun.org.apache.xerces.internal.utils.XMLSecurityPropertyManager;
333 new XMLSecurityPropertyManager());
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/xinclude/
H A DXIncludeHandler.java74 import com.sun.org.apache.xerces.internal.utils.XMLSecurityPropertyManager;
300 protected XMLSecurityPropertyManager fSecurityPropertyMgr;
552 fSecurityPropertyMgr = (XMLSecurityPropertyManager)
708 fSecurityPropertyMgr = (XMLSecurityPropertyManager)value;
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSDHandler.java66 import com.sun.org.apache.xerces.internal.utils.XMLSecurityPropertyManager;
415 private XMLSecurityPropertyManager fSecurityPropertyMgr = null;
3611 fSecurityPropertyMgr = (XMLSecurityPropertyManager)
3618 XMLSecurityPropertyManager.Property.ACCESS_EXTERNAL_DTD);
3620 XMLSecurityPropertyManager.Property.ACCESS_EXTERNAL_SCHEMA);

Completed in 126 milliseconds