public class DOMValidateContext extends DOMCryptoContextimplements XMLValidateContext
XMLValidateContext. This class contains additional methods to specify the location in a DOM tree where an
XMLSignature is to be unmarshalled and validated from.
Note that the behavior of an unmarshalled XMLSignature is undefined if the contents of the underlying DOM tree are modified by the caller after the XMLSignature is created.
Also, note that DOMValidateContext instances can contain information and state specific to the XML signature structure it is used with. The results are unpredictable if a DOMValidateContext is used with different signature structures (for example, you should not use the same DOMValidateContext instance to validate two different XMLSignature objects).
XMLSignatureFactory.unmarshalXMLSignature(XMLValidateContext)
| Constructor and Description |
|---|
DOMValidateContext(Key
Creates a
DOMValidateContext containing the specified key and node.
|
DOMValidateContext(KeySelector
Creates a
DOMValidateContext containing the specified key selector and node.
|
| Modifier and Type | Method and Description |
|---|---|
Node |
getNode()
Returns the node.
|
void |
setNode(Node
Sets the node.
|
get, getBaseURI, getDefaultNamespacePrefix, getElementById, getKeySelector, getNamespacePrefix, getProperty, getURIDereferencer, iterator, put, putNamespacePrefix, setBaseURI, setDefaultNamespacePrefix, setIdAttributeNS, setKeySelector, setProperty, setURIDereferencerclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitget, getBaseURI, getDefaultNamespacePrefix, getKeySelector, getNamespacePrefix, getProperty, getURIDereferencer, put, putNamespacePrefix, setBaseURI, setDefaultNamespacePrefix, setKeySelector, setProperty, setURIDereferencerpublic DOMValidateContext(KeySelectorks, Node node)
DOMValidateContext containing the specified key selector and node.
ks - a key selector for finding a validation key
node - the node
NullPointerException - if
ks or
node is
null
public DOMValidateContext(KeyvalidatingKey, Node node)
DOMValidateContext containing the specified key and node. The validating key will be stored in a
singleton KeySelector that is returned when the
getKeySelector method is called.
validatingKey - the validating key
node - the node
NullPointerException - if
validatingKey or
node is
null
public void setNode(Nodenode)
node - the node
NullPointerException - if
node is
null
getNode()
public NodegetNode()
null)
setNode(Node)