- java.lang.Object
- 
- javax.xml.crypto.dom.DOMCryptoContext
- 
- javax.xml.crypto.dsig.dom.DOMValidateContext
 
 
- 
- All Implemented Interfaces:
- XMLValidateContext,- XMLCryptoContext
 
 public class DOMValidateContext extends DOMCryptoContext implements XMLValidateContext A DOM-specificXMLValidateContext. This class contains additional methods to specify the location in a DOM tree where anXMLSignatureis to be unmarshalled and validated from.Note that the behavior of an unmarshalled XMLSignatureis undefined if the contents of the underlying DOM tree are modified by the caller after theXMLSignatureis created.Also, note that DOMValidateContextinstances can contain information and state specific to the XML signature structure it is used with. The results are unpredictable if aDOMValidateContextis used with different signature structures (for example, you should not use the sameDOMValidateContextinstance to validate two differentXMLSignatureobjects).- Implementation Note:
- By default, the JDK implementation enables a secure validation mode by
 setting the org.jcp.xml.dsig.secureValidationproperty toBoolean.TRUE(see thesetPropertymethod). When enabled, validation of XML signatures are subject to stricter checking of algorithms and other constraints as specified by thejdk.xml.dsig.secureValidationPolicysecurity property.
- Since:
- 1.6
- See Also:
- XMLSignatureFactory.unmarshalXMLSignature(XMLValidateContext)
 
- 
- 
Constructor SummaryConstructors Constructor Description DOMValidateContext(Key validatingKey, Node node)Creates aDOMValidateContextcontaining the specified key and node.DOMValidateContext(KeySelector ks, Node node)Creates aDOMValidateContextcontaining the specified key selector and node.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description NodegetNode()Returns the node.voidsetNode(Node node)Sets the node.- 
Methods declared in class javax.xml.crypto.dom.DOMCryptoContextget, getElementById, getNamespacePrefix, getProperty, iterator, put, putNamespacePrefix, setBaseURI, setIdAttributeNS, setProperty
 - 
Methods declared in class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods declared in interface javax.xml.crypto.XMLCryptoContextget, getBaseURI, getDefaultNamespacePrefix, getKeySelector, getNamespacePrefix, getProperty, getURIDereferencer, put, putNamespacePrefix, setBaseURI, setDefaultNamespacePrefix, setKeySelector, setProperty, setURIDereferencer
 
- 
 
- 
- 
- 
Constructor Detail- 
DOMValidateContextpublic DOMValidateContext(KeySelector ks, Node node) Creates aDOMValidateContextcontaining the specified key selector and node.- Parameters:
- ks- a key selector for finding a validation key
- node- the node
- Throws:
- NullPointerException- if- ksor- nodeis- null
 
 - 
DOMValidateContextpublic DOMValidateContext(Key validatingKey, Node node) Creates aDOMValidateContextcontaining the specified key and node. The validating key will be stored in asingleton KeySelectorthat is returned when thegetKeySelectormethod is called.- Parameters:
- validatingKey- the validating key
- node- the node
- Throws:
- NullPointerException- if- validatingKeyor- nodeis- null
 
 
- 
 - 
Method Detail- 
setNodepublic void setNode(Node node) Sets the node.- Parameters:
- node- the node
- Throws:
- NullPointerException- if- nodeis- null
- See Also:
- getNode()
 
 - 
getNodepublic Node getNode() Returns the node.- Returns:
- the node (never null)
- See Also:
- setNode(Node)
 
 
- 
 
-