java.lang.Object
javax.xml.crypto.dom.DOMCryptoContext
javax.xml.crypto.dsig.dom.DOMValidateContext
- All Implemented Interfaces:
XMLValidateContext
,XMLCryptoContext
A DOM-specific
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).
- Implementation Note:
- By default, the JDK implementation enables a secure validation mode by
setting the
org.jcp.xml.dsig.secureValidation
property toBoolean.TRUE
(see thesetProperty
method). When enabled, validation of XML signatures are subject to stricter checking of algorithms and other constraints as specified by thejdk.xml.dsig.secureValidationPolicy
security property. The mode can be disabled by setting the property toBoolean.FALSE
. The mode can also be enabled or disabled by setting theorg.jcp.xml.dsig.secureValidation
system property to "true" or "false". Any other value for the system property is also treated as "false". If the system property is set, it supersedes theDOMValidateContext
property value. - Since:
- 1.6
- See Also:
-
Constructor Summary
ConstructorDescriptionDOMValidateContext
(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 declared in class javax.xml.crypto.dom.DOMCryptoContext
get, getBaseURI, getDefaultNamespacePrefix, getElementById, getKeySelector, getNamespacePrefix, getProperty, getURIDereferencer, iterator, put, putNamespacePrefix, setBaseURI, setDefaultNamespacePrefix, setIdAttributeNS, setKeySelector, setProperty, setURIDereferencer
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods declared in interface javax.xml.crypto.XMLCryptoContext
get, getBaseURI, getDefaultNamespacePrefix, getKeySelector, getNamespacePrefix, getProperty, getURIDereferencer, put, putNamespacePrefix, setBaseURI, setDefaultNamespacePrefix, setKeySelector, setProperty, setURIDereferencer
-
Constructor Details
-
DOMValidateContext
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
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 Details
-
setNode
Sets the node.- Parameters:
node
- the node- Throws:
NullPointerException
- ifnode
isnull
- See Also:
-
getNode
Returns the node.- Returns:
- the node (never
null
) - See Also:
-