- 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 anXMLSignature
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 theXMLSignature
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 aDOMValidateContext
is used with different signature structures (for example, you should not use the sameDOMValidateContext
instance to validate two differentXMLSignature
objects).- Since:
- 1.6
- See Also:
XMLSignatureFactory.unmarshalXMLSignature(XMLValidateContext)
-
-
Constructor Summary
Constructors Constructor and Description DOMValidateContext(Key validatingKey, Node node)
Creates aDOMValidateContext
containing the specified key and node.DOMValidateContext(KeySelector ks, Node node)
Creates aDOMValidateContext
containing the specified key selector and node.
-
Method Summary
Methods Modifier and Type Method and Description Node
getNode()
Returns the node.void
setNode(Node node)
Sets the node.-
Methods inherited from class javax.xml.crypto.dom.DOMCryptoContext
get, getBaseURI, getDefaultNamespacePrefix, getElementById, getKeySelector, getNamespacePrefix, getProperty, getURIDereferencer, iterator, put, putNamespacePrefix, setBaseURI, setDefaultNamespacePrefix, setIdAttributeNS, setKeySelector, setProperty, setURIDereferencer
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface javax.xml.crypto.XMLCryptoContext
get, getBaseURI, getDefaultNamespacePrefix, getKeySelector, getNamespacePrefix, getProperty, getURIDereferencer, put, putNamespacePrefix, setBaseURI, setDefaultNamespacePrefix, setKeySelector, setProperty, setURIDereferencer
-
-
-
-
Constructor Detail
-
DOMValidateContext
public DOMValidateContext(KeySelector ks, Node node)
Creates aDOMValidateContext
containing the specified key selector and node.- Parameters:
ks
- a key selector for finding a validation keynode
- the node- Throws:
NullPointerException
- ifks
ornode
isnull
-
DOMValidateContext
public DOMValidateContext(Key validatingKey, Node node)
Creates aDOMValidateContext
containing the specified key and node. The validating key will be stored in asingleton KeySelector
that is returned when thegetKeySelector
method is called.- Parameters:
validatingKey
- the validating keynode
- the node- Throws:
NullPointerException
- ifvalidatingKey
ornode
isnull
-
-
Method Detail
-
setNode
public void setNode(Node node)
Sets the node.- Parameters:
node
- the node- Throws:
NullPointerException
- ifnode
isnull
- See Also:
getNode()
-
getNode
public Node getNode()
Returns the node.- Returns:
- the node (never
null
) - See Also:
setNode(Node)
-
-
Document created the 11/06/2005, last modified the 04/03/2020
Source of the printed document:https://www.gaudry.be/en/java-api-rf-javax/xml/crypto/dsig/dom/DOMValidateContext.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.