Class DOMValidateContext
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:
- The JDK implementation supports the following properties that can be set
using the
setPropertymethod.org.jcp.xml.dsig.secureValidation: value must be aBoolean. When enabled, validation of XML signatures are subject to stricter checking of algorithms and other constraints as specified by thejdk.xml.dsig.secureValidationPolicysecurity property. The default value if not specified isBoolean.TRUE. 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.secureValidationsystem 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 theDOMValidateContextproperty value.org.jcp.xml.dsig.validateManifests: value must be aBoolean. If enabled, the references in manifest elements (if exist) are validated during signature validation. The default value if not specified isBoolean.FALSE.org.jcp.xml.dsig.internal.dom.SignatureProvider: value must be aProvider. If specified, the underlyingSignaturewill be instantiated from this provider.
- Since:
- 1.6
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDOMValidateContext(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 Summary
Methods declared in class DOMCryptoContext
get, getBaseURI, getDefaultNamespacePrefix, getElementById, getKeySelector, getNamespacePrefix, getProperty, getURIDereferencer, iterator, put, putNamespacePrefix, setBaseURI, setDefaultNamespacePrefix, setIdAttributeNS, setKeySelector, setProperty, setURIDereferencerModifier and TypeMethodDescriptionThis implementation uses an internalHashMapto get the object that the specified key maps to.Returns the base URI.Returns the default namespace prefix.getElementById(String idValue) Returns theElementwith the specified ID attribute value.Returns the key selector for finding a key.getNamespacePrefix(String namespaceURI, String defaultPrefix) This implementation uses an internalHashMapto get the prefix that the specified URI maps to.getProperty(String name) This implementation uses an internalHashMapto get the object that the specified name maps to.Returns aURIDereferencerthat is used to dereferenceURIReferences.iterator()Returns a read-only iterator over the set of Id/Element mappings of thisDOMCryptoContext.This implementation uses an internalHashMapto map the key to the specified object.putNamespacePrefix(String namespaceURI, String prefix) This implementation uses an internalHashMapto map the URI to the specified prefix.voidsetBaseURI(String baseURI) Sets the base URI.voidsetDefaultNamespacePrefix(String defaultPrefix) Sets the default namespace prefix.voidsetIdAttributeNS(Element element, String namespaceURI, String localName) Registers the element's attribute specified by the namespace URI and local name to be of type ID.voidSets the key selector for finding a key.setProperty(String name, Object value) This implementation uses an internalHashMapto map the name to the specified object.voidsetURIDereferencer(URIDereferencer dereferencer) Sets aURIDereferencerthat is used to dereferenceURIReferences.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
DOMValidateContext
Creates aDOMValidateContextcontaining the specified key selector and node.- Parameters:
ks- a key selector for finding a validation keynode- the node- Throws:
NullPointerException- ifksornodeisnull
-
DOMValidateContext
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 keynode- the node- Throws:
NullPointerException- ifvalidatingKeyornodeisnull
-
-
Method Details
-
setNode
Sets the node.- Parameters:
node- the node- Throws:
NullPointerException- ifnodeisnull- See Also:
-
getNode
-